這篇文章主要介紹了PHP fopen()和 file_get_contents()應用與差異,需要的朋友可以參考下
代碼如下: $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.會在本頁加載。