当前位置:Gxlcms > PHP教程 > readfile函数怎么用

readfile函数怎么用

时间:2021-07-01 10:21:17 帮助过:14人阅读

php readfile() 函数用于输出一个文件。

php readfile()函数 语法

作用:输出一个文件。

语法:

readfile(filename,include_path,context)

参数:

filename 必需。规定要读取的文件。

include_path 可选。如果也想在 include_path 中搜索文件,可以使用该参数并将其设为 true。

context 可选。规定文件句柄的环境。Context 是可以修改流的行为的一套选项。

说明:该函数读入一个文件并写入到输出缓冲。若成功,则返回从文件中读入的字节数。若失败,则返回 false。

php readfile()函数 示例

<?php
echo readfile("./test.txt");
?>

本篇文章就是关于PHP readfile函数的介绍,希望对需要的朋友有所帮助!

以上就是readfile函数怎么用的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行