PHP fgets() 函數(shù)
PHP fgets() 函數(shù)
定義和用法
fgets() 函數(shù)從打開的文件中返回一行。
fgets() 函數(shù)會在到達指定長度( length - 1 )、碰到換行符、讀到文件末尾(EOF)時(以先到者為準),停止返回一個新行。
如果失敗該函數(shù)返回 FALSE。
語法
fgets(file,length)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要讀取的文件。 |
length | 可選。規(guī)定要讀取的字節(jié)數(shù)。默認是 1024 字節(jié)。 |
實例 1
<?php
$file = fopen("test.txt","r");
echo fgets($file);
fclose($file);
?>
上面的代碼將輸出:
Hello, this is a test file.
實例 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.
相關(guān)文章
- PHP 變量
- PHP echo 和 print 語句
- PHP EOF(heredoc) 使用說明
- PHP 常量
- PHP 函數(shù)
- PHP $_GET 變量
- PHP array_change_key_case() 函數(shù)
- PHP array_chunk() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP array_unshift() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP arsort() 函數(shù)
- PHP current() 函數(shù)
- PHP prev() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Filesystem 函數(shù)