fgets() 函數可以從打開的文件中返回一行。此函數停止在指定長度或 EOF 處返回新行,以先到者為準,失敗時返回 false。
用法
string fgets ( resource $handle [, int $length ] )
此函數可以返回從句柄指向的文件中讀取的最長為 1 個字節的字符串。
示例1
<?php
$file = fopen("/PhpProject/sample.txt", "r");
echo fgets($file);
fclose($file);
?>
輸出
tutorialspoint
示例2
<?php
$file = fopen("/PhpProject/sample.txt", "r");
while(! feof($file)) {
echo fgets($file). "\n";
}
fclose($file);
?>
輸出
tutorialspoint tutorix
相關用法
- PHP fgets()用法及代碼示例
- PHP fgets( )用法及代碼示例
- PHP fgetss( )用法及代碼示例
- PHP fgetss()用法及代碼示例
- PHP fgetc()用法及代碼示例
- PHP fgetcsv()用法及代碼示例
- PHP fgetc( )用法及代碼示例
- PHP fwrite( )用法及代碼示例
- PHP ftruncate( )用法及代碼示例
- PHP ftp_rawlist()用法及代碼示例
- PHP flock()用法及代碼示例
- PHP fileowner()用法及代碼示例
- PHP ftp_close()用法及代碼示例
- PHP fileperms()用法及代碼示例
- PHP function_exists()用法及代碼示例
- PHP fmod()用法及代碼示例
- PHP ftp_nb_put()用法及代碼示例
- PHP fputs()用法及代碼示例
- PHP ftp_chmod()用法及代碼示例
- PHP filter_id()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Function fgets()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。