fread()函數(shù)可以從打開(kāi)的文件中讀取數(shù)據(jù),此函數(shù)可以在文件末尾或達(dá)到指定長(zhǎng)度時(shí)停止,以先到者為準(zhǔn)。此函數(shù)可以在失敗時(shí)返回讀取字符串或false。
string fread ( resource $handle , int $length )
fread()函數(shù)可以從句柄引用的文件指針中讀取最大長(zhǎng)度的字節(jié)。
<?php $filename = "sample.txt"; $handle = fopen($filename, "r"); echo fread($handle, "30"); fclose($handle); ?>
輸出結(jié)果
nhooo Tutorix Hello
<?php $filename = "sample.txt"; $file = fopen($filename, "r"); $contents = fread($file, filesize($filename)); echo $contents; fclose($file); ?>
輸出結(jié)果
nhooo Tutorix Hello (cainiaoplus.com)!!!!