PHP feof() 函數讀檔案的使用

來源:互聯網
上載者:User

 (PHP 4, PHP 5)

feof — 測試檔案指標是否到了檔案結束的位置

如果伺服器沒有關閉由 fsockopen() 所開啟的串連,feof() 會一直等待直到逾時而返回TRUE。預設的逾時限制是 60 秒,可以使用 stream_set_timeout() 來改變這個值。

 檔案指標必須是有效,必須指向由 fopen() 或fsockopen() 成功開啟的檔案(並還未由fclose() 關閉)。

 

如果傳遞的檔案指標無效可能會陷入無限迴圈中,因為 EOF 不會返回 TRUE。

Example #1 使用無效檔案指標的 feof() 例子

<?php
// 如果檔案不可讀取或者不存在,fopen 函數返回 FALSE
$file = @fopen("no_such_file", "r");

// 來自 fopen 的 FALSE 會發出一條警告資訊並在這裡陷入無限迴圈
while (!feof($file)) {
}

fclose($file);
?>
 
 
例子

<?php
$file = fopen($_SERVER['DOCUMENT_ROOT']."/me/test.txt", "r");

//輸出文本中所有的行,直到檔案結束為止。
while(! feof($file))
  {
  echo fgets($file). "<br />";
  }

fclose($file);
?>

輸出:

Hello, this is a test file.
There are three lines here.
This is the last line.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.