📅  最后修改于: 2020-09-28 04:55:09             🧑  作者: Mango
PHP提供了各种功能来从文件读取数据。有多种功能允许您读取所有文件数据,逐行读取数据以及逐字符读取数据。
可用的PHP文件读取功能在下面给出。
PHPfread()函数用于读取文件的数据。它需要两个参数:文件资源和文件大小。
string fread (resource $handle , int $length )
$handle表示由fopen()函数创建的文件指针。
$length表示要读取的字节长度。
$contents
";//printing data of file
fclose($fp);//close file
?>
输出量
this is first line
this is another line
this is third line
PHPfgets()函数用于从文件读取单行。
string fgets ( resource $handle [, int $length ] )
输出量
this is first line
PHPfgetc()函数用于从文件读取单个字符。要使用fgetc()函数获取所有数据,请在while循环内使用!feof()函数。
string fgetc ( resource $handle )
输出量
this is first line this is another line this is third line