PHP fpassthru()函数
fpassthru() 函数可以从打开文件的当前位置开始,读取所有数据直到文件结束,并可以将结果写入输出缓冲区。该函数可以返回传递的字符数,或者失败时返回 false。
语法
int fpassthru ( resource $handle )
在Windows系统中,当我们能够在二进制文件中使用fpassthru()函数时,文件必须以二进制模式打开。
示例
<?php
file = fopen("/PhpProject/sample.txt", "r");
// Read first line
fgets(file);
// Send rest of the file to the output buffer
echo fpassthru(file);
fclose(file);
?>
输出
Tutorix7