說明:
該函數將給定的文件指針從當前的位置讀取到EOF,並把結果寫到輸出緩衝區

 
例子 1
<?php
$file = fopen("test.txt","r");

// 讀取第一行
fgets($file);

// 把文件的其餘部分發送到輸出緩存
echo fpassthru($file);

fclose($file);
?>
輸出:
There are three lines in this file.
This is the last line.59
注: 59指示被傳遞的字符數。


例子 2
轉儲www 服務器的index 頁:
<?php
$file = fopen("http://www.example.com","r");
fpassthru($file);
?>

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 stockwfj3 的頭像
    stockwfj3

    程式設計@筆記

    stockwfj3 發表在 痞客邦 留言(0) 人氣()