PHP fgetc() 函數
PHP fgetc() 函數

定義和用法
fgetc() 函數從打開的文件中返回一個單一的字符。
語法
fgetc(file)
參數 | 描述 |
---|---|
file | 必需。規定要檢查的文件。 |
提示和注釋
注釋:該函數處理大文件非常緩慢,所以它不用于處理大文件。如果您需要從一個大文件依次讀取一個字符,請使用 fgets() 依次讀取一行數據,然后使用 fgetc() 依次處理行數據。
實例 1
<?php
$file = fopen("test2.txt","r");
echo fgetc($file);
fclose($file);
?>
$file = fopen("test2.txt","r");
echo fgetc($file);
fclose($file);
?>
上面的代碼將輸出:
H
實例 2
按字符讀取文件:
<?php
$file = fopen("test2.txt","r");
while (! feof ($file))
{
echo fgetc($file);
}
fclose($file);
?>
$file = fopen("test2.txt","r");
while (! feof ($file))
{
echo fgetc($file);
}
fclose($file);
?>
上面的代碼將輸出:
Hello, this is a test file.

相關文章
- PHP 變量
- PHP echo 和 print 語句
- PHP If Else 語句
- PHP 超級全局變量
- PHP 函數
- PHP 魔術常量
- PHP $_GET 變量
- PHP Session
- PHP array_count_values() 函數
- PHP array_key_last() 函數
- PHP array_map() 函數
- PHP array_reduce() 函數
- PHP array_sum() 函數
- PHP array_uintersect() 函數
- PHP pos() 函數
- PHP reset() 函數
- PHP shuffle() 函數
- PHP 5 Directory 函數
- PHP Filter 函數
- PHP 5 MySQLi 函數