當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP fpassthru()用法及代碼示例



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