整理了一下PHP讀取檔案的幾個方法,方便以後查閱,希望能幫助大家。
1.frea,
string fread ( int $handle , int $length )
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); ?>
2.fgets
string fgets ( int $handle [, int $length ] )
fgets()從handle 指向的檔案中讀取一行並傳回長度最多為length - 1 位元組的字串。碰到換行符號(包括在回傳值中)、EOF 或已經讀取了 length - 1 位元組後停止(看先碰到那一種情況)。如果沒有指定 length,則預設為 1K,或說 1024 位元組。
<?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 開始本函數可以安全地用於二進位。早期的版本則不行。
3.fgetss
string fgetss ( resource $handle [, int $length [, string $allowable_tags ]] )
跟fgets功能一樣,但是fgetss會嘗試從但fgetss會嘗試從在讀取的文字中去掉任何HTML 和PHP 標記,可以用可選的第三個參數指定哪些標記不被去掉。
<?php $handle = fopen('./file.txt', 'r'); while(!feof($handle)){ echo fgetss($handle, 1024, '<br>'); } fclose($handle); ?>
4.file
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; } ?>
5.readfile
int readfile ( string $filename [, bool $use_include_path [, resource $context ]] )
#讀入一個檔案並寫入輸出緩衝。傳回從檔案中讀入的位元組數。如果出錯返回 FALSE 並且除非是以 @readfile() 形式調用,否則會顯示錯誤訊息。
<?php $size = readfile('./file.txt'); echo $size; ?>
6.file_get_contents
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); ?>
7.fpassthru
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); ?>
8.parse_ini_file
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。 [()" 也不能用在鍵名的任何地方,而且這些字元在選項值中有著特殊的意義。
test.ini檔案內容:
; This is a sample configuration file
; Comments start with ';', as in php.ini
[first_section]one = 1five = 5animal = 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 編碼。
相關推薦:
#以上是PHP讀取檔案的方法程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!