fgetc()函數(shù)可以從打開的文件返回單個(gè)字符,并從給定的文件指針獲取字符。
string fgetc ( resource $handle )
返回一個(gè)包含有一個(gè)字符的字符串,該字符從 handle 指向的文件中得到。 碰到 EOF 則返回 FALSE。
此函數(shù)處理非常大的文件非常慢,因此不能用于處理大文件。 如果需要從大文件中順序讀取一個(gè)字符,請使用fgets()函數(shù)順序讀取一行數(shù)據(jù),然后使用fgetc()函數(shù)順序處理該行數(shù)據(jù)。
<?php $file = fopen("/PhpProject/sample.txt", "r"); echo fgetc($file); fclose($file); ?>
輸出結(jié)果
n
<?php $file = fopen("/PhpProject/sample.txt", "r"); while(! feof($file)) { echo fgetc($file); } fclose($file); ?>
輸出結(jié)果
(cainiaoplus.com)