(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplFileObject::fgetc — Gets character from file
Gets a character from the file.
此函數(shù)沒(méi)有參數(shù)。
Returns a string containing a single character read from the file or false
on EOF.
此函數(shù)可能返回布爾值
false
,但也可能返回等同于 false
的非布爾值。請(qǐng)閱讀 布爾類型章節(jié)以獲取更多信息。應(yīng)使用
===
運(yùn)算符來(lái)測(cè)試此函數(shù)的返回值。
示例 #1 SplFileObject::fgetc() example
<?php
$file = new SplFileObject('file.txt');
while (false !== ($char = $file->fgetc())) {
echo "$char\n";
}
?>