最新的Web開發教程
 

PHP fgetc() Function


<完整PHP文件系統參考

定義和用法

fgetc()函數返回從打開的文件中的單個字符。

句法

fgetc(file)

參數 描述
file 需要。 指定文件檢查

提示和注意

Note:此功能是緩慢的,不應該對大文件使用。 如果您需要在同一時間從一個大文件讀取一個字符,使用fgets()在一次讀取數據的一個線,然後在同一個時間處理行一個字符fgetc()


實施例1

<?php
$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);
?>

代碼的輸出將是:

Hello, this is a test file.

<完整PHP文件系統參考