PHP readfile()函数
readfile()函数可以读取文件并将其写入输出缓冲区。此函数可以在成功时返回读取的字节数,失败时返回false和错误。我们可以在函数名前面添加“@”来隐藏错误输出。
语法
int readfile ( string filename [, booluse_include_path = FALSE [, resource $context ]] )
此函数可以读取文件并将其写入输出缓冲区。如果在php.ini文件中启用了fopen()函数的包装器,则可以使用URL作为文件名来使用此函数。
示例
<?php
echo readfile("/PhpProject/sample.txt");
?>
输出
Tutorialspoint
Tutorix
23