PHP fgetc() 函數(shù)
PHP fgetc() 函數(shù)

定義和用法
fgetc() 函數(shù)從打開(kāi)的文件中返回一個(gè)單一的字符。
語(yǔ)法
fgetc(file)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要檢查的文件。 |
提示和注釋
注釋?zhuān)?/b>該函數(shù)處理大文件非常緩慢,所以它不用于處理大文件。如果您需要從一個(gè)大文件依次讀取一個(gè)字符,請(qǐng)使用 fgets() 依次讀取一行數(shù)據(jù),然后使用 fgetc() 依次處理行數(shù)據(jù)。
實(shí)例 1
<?php
$file = fopen("test2.txt","r");
echo fgetc($file);
fclose($file);
?>
$file = fopen("test2.txt","r");
echo fgetc($file);
fclose($file);
?>
上面的代碼將輸出:
H
實(shí)例 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.

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