PHP fgets是一種基於php語言開發的可以從檔案指針中讀取一行數據並返回屬性的功能函式。
基本介紹
- 外文名:PHP fgets
- 類別:函式
- 指針:檔案指針
- 學科:計算機
定義和用法
語法
fgets(file,length) |
參數 | 描述 |
file | 必需。規定要讀取的檔案。 |
length | 可選。規定要讀取的位元組數。默認是 1024 位元組。 |
說明
提示和注釋
例子 1
<?php $file = fopen("test.txt","r"); echo fgets($file); fclose($file); ?> |
Hello, this is a test file. |
例子 2
<?php $file = fopen("test.txt","r"); while(! feof($file)) { echo fgets($file). "<br />"; } fclose($file); ?> |
Hello, this is a test file. There are three lines here. This is the last line. |