readfile函数怎么用

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

php readfile()函数 语法

作用:输出一个文件。

语法:

readfile(filename,include_path,context)

参数:

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

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

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

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

php readfile()函数 示例:

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

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