fclose — 關閉一個已打開的文件指針
bool fclose ( resource $handle )
feof — 測試文件指針是否到了文件結束的位置
bool feof ( resource $handle )
fopen — 打開文件或者 URL
resource fopen ( string $filename , string $mode [, bool $use_include_path = false [, resource $context ]] )
fseek — 在文件指針中定位
int fseek ( resource $handle , int $offset [, int $whence = SEEK_SET ] )
ftell — 返回文件指針讀/寫的位置
int ftell ( resource $handle )
rewind — 倒回文件指針的位置
bool rewind ( resource $handle )