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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。