当前位置:首页 > PHP教程 > php函数 > 列表

readfile函数怎么用

发布:smiling 来源: PHP粉丝网  添加日期:2019-12-30 15:02:40 浏览: 评论:0 

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

php readfile()函数 语法

作用:输出一个文件。

语法:

readfile(filename,include_path,context)

参数:

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

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

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

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

php readfile()函数 示例:

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

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

Tags: readfile函数怎么用

分享到: