fread()、fgets()、fgetc()、file_get_contents() 與 file() 函數用於從檔案讀取內容。
fread() 函數用於讀取檔案(可安全地用於二進位檔案)。
語法:
string fread( int handle, int length )
fread() 從檔案指標 handle 讀取最多 length 個位元組。當遇到下列任何一種情況時,會停止讀取檔案:
<?php $filename = "data.txt"; $fh = fopen($filename, "r"); echo fread($fh, "10"); fclose($fh); ?>
字串中,應該用表現較好的 file_get_contents() 。
fgets()fgets() 函數用於從檔案讀取一行 數據,並將檔案指標指向下一行。
提示:如果想在讀取的時候去掉檔案中的 HTML 標記,請使用fgetss() 函數。
語法:string fgets( int handle [, int length] )
<?php $fh = @fopen("data.txt","r") or die("打开 data.txt 文件出错!"); // if条件避免无效指针 if($fh){ while(!feof($fh)) { echo fgets($fh), '<br />'; } } fclose($fh); ?>
逐字 讀取檔案數據,直到檔案結束。
语法:
string fgetc( resource handle )
例子:
<?php $fh = @fopen("data.txt","r") or die("打开 data.txt 文件出错!"); if($fh){ while(!feof($fh)) { echo fgetc($fh); } } fclose($fh); ?>
file_get_contents() 函数用于把 整个文件 读入一个字符串,成功返回一个字符串,失败则返回 FALSE。
语法:
string file_get_contents( string filename [, int offset [, int maxlen]] )
参数 | 说明 |
---|---|
filename | 要读取的文件名称 |
offset | 可选,指定读取开始的位置,默认为文件开始位置 |
maxlen | 可选,指定读取文件的长度,单位字节 |
例子:
<?php // 读取时同事将换行符转换成 <br /> echo nl2br(file_get_contents('data.txt')); ?>
file() 函数用于把 整个文件 读入一个数组中,数组中的每个单元都是文件中相应的一行,包括换行符在内。成功返回一个数组,失败则返回 FALSE。
语法:
array file( string filename )
例子:
<?php $lines = file('data.txt'); // 在数组中循环并加上行号 foreach ($lines as $line_num => $line) { echo "Line #{$line_num} : ",$line,'<br />'; } ?>
test.txt 文件内容:
你好! 这是第二行文字。
浏览器显示:
Line #0 : 你好! Line #1 : 这是第二行文字。
以上是PHP 檔案讀取 fread、fgets、fgetc、file_get_contents 與 file 函數的使用實例程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!