下面小編就為大家?guī)硪黄狿HP中讀取文件的幾個方法總結(jié)(推薦)。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。
1.fread
string fread ( int $handle , int $length )
fread() 從 handle 指向的文件中讀取最多 length 個字節(jié)。該函數(shù)在讀取完最多 length 個字節(jié)數(shù),或到達 EOF 的時候,或(對于網(wǎng)絡(luò)流)當(dāng)一個包可用時,或(在打開用戶空間流之后)已讀取了 8192 個字節(jié)時就會停止讀取文件,視乎先碰到哪種情況。
fread() 返回所讀取的字符串,如果出錯返回 FALSE。
<?php
$filename = "/usr/local/something.txt";
$handle = fopen($filename, "r");//讀取二進制文件時,需要將第二個參數(shù)設(shè)置成'rb'
//通過filesize獲得文件大小,將整個文件一下子讀到一個字符串中
$contents = fread($handle, filesize ($filename));
fclose($handle);
?>
如果所要讀取的文件不是本地普通文件,而是遠程文件或者流文件,就不能用這種方法,因為,filesize不能獲得這些文件的大小。此時,你需要通過feof()或者fread()的返回值判斷是否已經(jīng)讀取到了文件的末尾。
例如:
<?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表示已經(jīng)讀取到文件末尾
$content .= $a;
}
echo $content;
fclose($handle);
?>
2.fgets
string fgets ( int $handle [, int $length ] )
fgets()從 handle 指向的文件中讀取一行并返回長度最多為 length - 1 字節(jié)的字符串。碰到換行符(包括在返回值中)、EOF 或者已經(jīng)讀取了 length - 1 字節(jié)后停止(看先碰到那一種情況)。如果沒有指定 length,則默認(rèn)為 1K,或者說 1024 字節(jié)。
<?php
$handle = fopen('./file.txt', 'r');
while(!feof($handle)){
echo fgets($handle, 1024);
}
fclose($handle);
?>
Note: length 參數(shù)從 PHP 4.2.0 起成為可選項,如果忽略,則行的長度被假定為 1024。從 PHP 4.3 開始,忽略掉 length 將繼續(xù)從流中讀取數(shù)據(jù)直到行結(jié)束。如果文件中的大多數(shù)行都大于 8KB,則在腳本中指定最大行的長度在利用資源上更為有效。從 PHP 4.3 開始本函數(shù)可以安全用于二進制文件。早期的版本則不行。
3.fgetss
string fgetss ( resource $handle [, int $length [, string $allowable_tags ]] )
跟fgets功能一樣,但是fgetss會嘗試從讀取的文本中去掉任何 HTML 和 PHP 標(biāo)記,可以用可選的第三個參數(shù)指定哪些標(biāo)記不被去掉。
<?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 ]] )
將文件內(nèi)容讀入一個數(shù)組中,數(shù)組的每一項對應(yīng)文件中的一行,包括換行符在內(nèi)。不需要行結(jié)束符時可以使用 rtrim() 函數(shù)過濾換行符。
<?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 ]] )
讀入一個文件并寫入到輸出緩沖。返回從文件中讀入的字節(jié)數(shù)。如果出錯返回 FALSE 并且除非是以 @readfile() 形式調(diào)用,否則會顯示錯誤信息。
<?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 ]]]] )
將文件讀入一個字符串。第三個參數(shù)$context可以用來設(shè)置一些參數(shù),比如訪問遠程文件時,設(shè)置超時等等。
另外,file_get_contents相對于以上幾個函數(shù),性能要好得多,所以應(yīng)該優(yōu)先考慮使用file_get_contents。但是readfile貌似比file_get_contents性能好一點(?),因為它不需要調(diào)用fopen。
<?php
$ctx = stream_context_create(array(
'http' => array(
'timeout' => 1 //設(shè)置超時
)
)
);
echo file_get_contents("http://www.baidu.com/", 0, $ctx);
?>
7.fpassthru
int fpassthru ( resource $handle )
將給定的文件指針從當(dāng)前的位置讀取到 EOF 并把結(jié)果寫到輸出緩沖區(qū)。
<?php
header("Content-Type:text/html;charset=utf-8");
$handle = fopen('./test2.php', 'r');
fseek($handle, 1024);//將指針定位到1024字節(jié)處
fpassthru($handle);
?>
8.parse_ini_file
array parse_ini_file ( string $filename [, bool $process_sections ] )
parse_ini_file() 載入一個由 filename 指定的 ini 文件,并將其中的設(shè)置作為一個聯(lián)合數(shù)組返回。如果將最后的 process_sections 參數(shù)設(shè)為 TRUE,將得到一個多維數(shù)組,包括了配置文件中每一節(jié)的名稱和設(shè)置。process_sections 的默認(rèn)值是 FALSE。
注意:
1. 如果 ini 文件中的值包含任何非字母數(shù)字的字符,需要將其括在雙引號中(")。
2. 有些保留字不能作為 ini 文件中的鍵名,包括:null,yes,no,true 和 false。值為 null,no 和 false 等效于 "",值為 yes 和 true 等效于 "1"。字符 {}|&~![()" 也不能用在鍵名的任何地方,而且這些字符在選項值中有著特殊的意義。
test.ini文件內(nèi)容:
; 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內(nèi)容:
<?php
$config = parse_ini_file('./test.ini', ture);
print_r($config);
?>
輸出內(nèi)容:
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 標(biāo)志,即使系統(tǒng)并不需要,這樣可以使腳本的移植性更好。
2. allow_url_fopen選項激活了 URL 形式的 fopen 封裝協(xié)議使得可以訪問 URL 對象例如文件。默認(rèn)的封裝協(xié)議提供用 ftp 和 http 協(xié)議來訪問遠程文件,一些擴展庫例如 zlib 可能會注冊更多的封裝協(xié)議。出于安全性考慮,此選項只能在 php.ini 中設(shè)置。
3. 如果要打開有特殊字符的 URL (比如說有空格),就需要使用 urlencode() 進行 URL 編碼。
以上這篇PHP中讀取文件的幾個方法總結(jié)(推薦)就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考