(PHP 4, PHP 5, PHP 7, PHP 8)
fgetc — 從文件指針中讀取字符
$handle
): string從文件句柄中獲取一個字符。
返回一個包含有一個字符的字符串,該字符從 handle
指向的文件中得到。
碰到 EOF 則返回 false
。
示例 #1 一個 fgetc() 例子
<?php
$fp = fopen('somefile.txt', 'r');
if (!$fp) {
echo 'Could not open file somefile.txt';
}
while (false !== ($char = fgetc($fp))) {
echo "$char\n";
}
?>
注意: 此函數(shù)可安全用于二進制對象。