精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

PHP fgets() 函數(shù)

PHP fgets() 函數(shù)

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

定義和用法

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

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

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

語法

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)文章