fgetc() 函數從開啟的檔案中傳回一個單一的字元。
fgetc(file)
參數 | 描述 |
---|---|
file | 必需。規定要檢查的文件。 |
註:函數處理大檔案非常緩慢,所以它不用於處理大檔案。如果您需要從一個大檔案依序讀取一個字符,請使用fgets() 依序讀取一行數據,然後使用fgetc() 依序處理行資料。
<?php$file = fopen("test2.txt","r");echo fgetc($file);fclose($file);?>
上面的程式碼將輸出:
H
按字元讀取檔案:
<?php$file = fopen("test2.txt","r");while (! feof ($file)) { echo fgetc($file); }fclose($file);?>
上面的程式碼將輸出:
Hello, this is a test file.