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 )