fgetc — 从文件指针中读取字符
string fgetc ( resource $handle )
fgets — 从文件指针中读取一行
string fgets ( resource $handle [, int $length ] )
file_get_contents — 将整个文件读入一个字符串
string file_get_contents ( string $filename [, bool $use_include_path = false [, resource $context [, int $offset = -1 [, int $maxlen ]]]] )
file — 把整个文件读入一个数组中
array file ( string $filename [, int $flags = 0 [, resource $context ]] )
fpassthru — 输出文件指针处的所有剩余数据
int fpassthru ( resource $handle )
fread — 读取文件(可安全用于二进制文件)
string fread ( resource $handle , int $length )
ftruncate — 将文件截断到给定的长度
bool ftruncate ( resource $handle , int $size )
readfile — 输出文件
int readfile ( string $filename [, bool $use_include_path = false [, resource $context ]] )