首页 > 语言 > PHP > 正文

readfile函数怎么用

2024-09-04 11:49:41
字体:
来源:转载
供稿:网友

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函数的介绍,希望对需要的朋友有所帮助!

上一篇:file函数怎么用

下一篇:ftell函数怎么用

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表