整理了一下PHP中讀取文件的幾個方法,方便之後查閱。php
string fread ( int $handle , int $length )html
fread() 從 handle 指向的文件中讀取最多 length 個字節。該函數在讀取完最多 length 個字節數,或到達 EOF 的時候,或(對於網絡流)當一個包可用時,或(在打開用戶空間流以後)已讀取了 8192 個字節時就會中止讀取文件,視乎先碰到哪一種狀況。數組
fread() 返回所讀取的字符串,若是出錯返回 FALSE。安全
<?php $filename = "/usr/local/something.txt"; $handle = fopen($filename, "r");//讀取二進制文件時,須要將第二個參數設置成'rb' //經過filesize得到文件大小,將整個文件一會兒讀到一個字符串中 $contents = fread($handle, filesize ($filename)); fclose($handle); ?>
若是所要讀取的文件不是本地普通文件,而是遠程文件或者流文件,就不能用這種方法,由於,filesize不能得到這些文件的大小。此時,你須要經過feof()或者fread()的返回值判斷是否已經讀取到了文件的末尾。網絡
例如:函數
<?php $handle = fopen('http://www.baidu.com', 'r'); $content = ''; while(!feof($handle)){ $content .= fread($handle, 8080); } echo $content; fclose($handle); ?>
或者:性能
<?php $handle = fopen('http://www.baidu.com', 'r'); $content = ''; while(false != ($a = fread($handle, 8080))){//返回false表示已經讀取到文件末尾 $content .= $a; } echo $content; fclose($handle); ?>
string fgets ( int $handle [, int $length ] )編碼
fgets()從 handle 指向的文件中讀取一行並返回長度最多爲 length - 1 字節的字符串。碰到換行符(包括在返回值中)、EOF 或者已經讀取了 length - 1 字節後中止(看先碰到那一種狀況)。若是沒有指定 length,則默認爲 1K,或者說 1024 字節。url
<?php $handle = fopen('./file.txt', 'r'); while(!feof($handle)){ echo fgets($handle, 1024); } fclose($handle); ?>
Note: length 參數從 PHP 4.2.0 起成爲可選項,若是忽略,則行的長度被假定爲 1024。從 PHP 4.3 開始,忽略掉 length 將繼續從流中讀取數據直到行結束。若是文件中的大多數行都大於 8KB,則在腳本中指定最大行的長度在利用資源上更爲有效。從 PHP 4.3 開始本函數能夠安全用於二進制文件。早期的版本則不行。
spa
string fgetss ( resource $handle [, int $length [, string $allowable_tags ]] )
跟fgets功能同樣,可是fgetss會嘗試從讀取的文本中去掉任何 HTML 和 PHP 標記,能夠用可選的第三個參數指定哪些標記不被去掉。
<?php $handle = fopen('./file.txt', 'r'); while(!feof($handle)){ echo fgetss($handle, 1024, '<br>'); } fclose($handle); ?>
array file ( string $filename [, int $use_include_path [, resource $context ]] )
將文件內容讀入一個數組中,數組的每一項對應文件中的一行,包括換行符在內。不須要行結束符時可使用 rtrim() 函數過濾換行符。
<?php $a = file('./file.txt'); foreach($a as $line => $content){ echo 'line '.($line + 1).':'.$content; } ?>
int readfile ( string $filename [, bool $use_include_path [, resource $context ]] )
讀入一個文件並寫入到輸出緩衝。返回從文件中讀入的字節數。若是出錯返回 FALSE 而且除非是以 @readfile() 形式調用,不然會顯示錯誤信息。
<?php $size = readfile('./file.txt'); echo $size; ?>
string file_get_contents ( string $filename [, bool $use_include_path [, resource $context [, int $offset [, int $maxlen ]]]] )
將文件讀入一個字符串。第三個參數$context能夠用來設置一些參數,好比訪問遠程文件時,設置超時等等。
另外,file_get_contents相對於以上幾個函數,性能要好得多,因此應該優先考慮使用file_get_contents。可是readfile貌似比file_get_contents性能好一點(?),由於它不須要調用fopen。
<?php $ctx = stream_context_create(array( 'http' => array( 'timeout' => 1 //設置超時 ) ) ); echo file_get_contents("http://www.baidu.com/", 0, $ctx); ?>
int fpassthru ( resource $handle )
將給定的文件指針從當前的位置讀取到 EOF 並把結果寫到輸出緩衝區。
<?php header("Content-Type:text/html;charset=utf-8"); $handle = fopen('./test2.php', 'r'); fseek($handle, 1024);//將指針定位到1024字節處 fpassthru($handle); ?>
array parse_ini_file ( string $filename [, bool $process_sections ] )
parse_ini_file() 載入一個由 filename 指定的 ini 文件,並將其中的設置做爲一個聯合數組返回。若是將最後的 process_sections 參數設爲 TRUE,將獲得一個多維數組,包括了配置文件中每一節的名稱和設置。process_sections 的默認值是 FALSE。
注意:
1. 若是 ini 文件中的值包含任何非字母數字的字符,須要將其括在雙引號中(")。
2. 有些保留字不能做爲 ini 文件中的鍵名,包括:null,yes,no,true 和 false。值爲 null,no 和 false 等效於 "",值爲 yes 和 true 等效於 "1"。字符 {}|&~![()" 也不能用在鍵名的任何地方,並且這些字符在選項值中有着特殊的意義。
test.ini文件內容:
; This is a sample configuration file; Comments start with ';', as in php.ini [first_section] one = 1 five = 5 animal = BIRD [second_section] path = "/usr/local/bin" URL = "http://www.example.com/~username
test.php內容:
<?php $config = parse_ini_file('./test.ini', ture); print_r($config); ?>
輸出內容:
Array ( [first_section] => Array ( [one] => 1 [five] => 5 [animal] => BIRD ) [second_section] => Array ( [path] => /usr/local/bin [URL] => http://www.example.com/~username ) )
幾個注意事項:
1. 鼓勵在處理二進制文件時使用 b 標誌,即便系統並不須要,這樣可使腳本的移植性更好。
2. allow_url_fopen選項激活了 URL 形式的 fopen 封裝協議使得能夠訪問 URL 對象例如文件。默認的封裝協議提供用 ftp 和 http 協議來訪問遠程文件,一些擴展庫例如 zlib 可能會註冊更多的封裝協議。出於安全性考慮,此選項只能在 php.ini 中設置。
3. 若是要打開有特殊字符的 URL (好比說有空格),就須要使用 urlencode() 進行 URL 編碼。