fpassthru() 函数可以从打开的文件中的当前位置读取所有数据,直到 EOF 并将结果写入输出缓冲区。此函数可以返回传递的字符数,或者失败时返回 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
相关用法
- PHP fpassthru()用法及代码示例
- PHP fpassthru( )用法及代码示例
- PHP fputs()用法及代码示例
- PHP fputs( )用法及代码示例
- PHP fprintf()用法及代码示例
- PHP fprint()用法及代码示例
- PHP fputcsv()用法及代码示例
- PHP fwrite( )用法及代码示例
- PHP ftruncate( )用法及代码示例
- PHP ftp_rawlist()用法及代码示例
- PHP flock()用法及代码示例
- PHP fileowner()用法及代码示例
- PHP ftp_close()用法及代码示例
- PHP fgets()用法及代码示例
- PHP fileperms()用法及代码示例
- PHP function_exists()用法及代码示例
- PHP fmod()用法及代码示例
- PHP ftp_nb_put()用法及代码示例
- PHP ftp_chmod()用法及代码示例
- PHP filter_id()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Function fpassthru()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。