PHP fopen()和 file_get_contents()应用与差异介绍_php技巧
程序员文章站
2022-05-19 17:29:50
...
复制代码 代码如下:
$file=fopen("11.txt","r")or exit("Unable to open file!");//fopen打开文件,如果不存在就显示打不开。
$filesize =filesize("11.txt");//计算文件大小
echo fread($file,$filesize);//读取文件
fclose($file);//关闭文件
fopen()打开文件例子,
fclose()用不用在页面上都没有体现,但是如果不用fclose()的话,被打开的文件会一直占用资源。
fopen() 打开网址例子:
复制代码 代码如下:
$web="http://www.baidu.com"; // http:// 不加的话就无法加载
$fp=fopen($web,'r');
if($fp){
while(!feof($fp)){
echo fgets($fp);
}
}
feof()检查文件是否到末端 ,到末端返回1,没有到返回0;
fgets()是逐行读取。
file_get_contents()例子;
复制代码 代码如下:
$web ="http://www.baidu.com "
$fcontent=file_get_contents($web);
echo $fcontent;
显然file_get_contents()更为简单。
而且在实验过程中我发现,如果在 $web =""中 不加www. 会直接跳转,加www.会在本页加载。
上一篇: PHP技巧:使用APC缓存优化PHP程序
推荐阅读
-
PHP fopen()和 file_get_contents()应用与差异介绍
-
PHP 抽象方法与抽象类abstract关键字介绍及应用_php技巧
-
php fopen()和file_get_contents() 区别介绍,filegetcontents
-
PHP fopen()和 file_get_contents()应用与差异介绍_php技巧
-
PHP fopen()和 file_get_contents()应用与差异介绍_php技巧
-
PHP fopen()和 file_get_contents()应用与差异介绍_PHP教程
-
php fopen()和file_get_contents() 区别介绍,filegetcontents
-
PHP fopen()和 file_get_contents()应用与差异介绍
-
PHP fopen()和 file_get_contents()应用与差异介绍
-
php.ini-dist 和 php.ini-recommended 的区别介绍(方便开发与安全的朋友)_php技巧