69pao国产精品视频-久久精品一区二区二三区-精品国产精品亚洲一本大道-99国产综合一区久久

PHP fgets() 函數(shù)

PHP fgets() 函數(shù)

PHP Filesystem 參考手冊(cè) 完整的 PHP Filesystem 參考手冊(cè)

定義和用法

fgets() 函數(shù)從打開(kāi)的文件中返回一行。

fgets() 函數(shù)會(huì)在到達(dá)指定長(zhǎng)度( length - 1 )、碰到換行符、讀到文件末尾(EOF)時(shí)(以先到者為準(zhǔn)),停止返回一個(gè)新行。

如果失敗該函數(shù)返回 FALSE。

語(yǔ)法

fgets(file,length)

參數(shù) 描述
file 必需。規(guī)定要讀取的文件。
length 可選。規(guī)定要讀取的字節(jié)數(shù)。默認(rèn)是 1024 字節(jié)。

實(shí)例 1

<?php $file = fopen("test.txt","r"); echo fgets($file); fclose($file); ?>

上面的代碼將輸出:

Hello, this is a test file.

實(shí)例 2: 按行讀取文件

<?php $file = fopen("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.

PHP Filesystem 參考手冊(cè) 完整的 PHP Filesystem 參考手冊(cè)

相關(guān)文章