PHP fread()函数
fread() 函数可从打开的文件中读取数据。此函数可以在文件末尾或达到指定长度时停止读取,以先到者为准。如果函数执行失败,则返回 false。
语法
string fread ( resource handle , intlength )
fread()函数可以从由句柄引用的文件指针中读取最多length个字节。
示例1
<?php
filename = "/PhpProject/sample.txt";handle = fopen(filename, "r");
echo fread(handle, "30");
fclose($handle);
?>
输出
Tutorialspoint
Tutorix
Hello
示例2
<?php
filename = "/PhpProject/sample.txt";file = fopen(filename, "r");contents = fread(file, filesize(filename));
echo contents;
fclose(file);
?>
输出
Tutorialspoint
Tutorix
Hello Tutorialspoint!!!!