欢迎访问服务器技术网-www.fuwuqijishu.com

PHP readfile() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 20次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP readfile() 函数


完整的 PHP Filesystem 参考手册


定义和用法

readfile() 函数读取一个文件,并写入到输出缓冲。

如果成功,该函数返回从文件中读入的字节数。如果失败,该函数返回 FALSE 并附带错误信息。您可以通过在函数名前面添加一个 ‘@’ 来隐藏错误输出。

语法

readfile(filename,include_path,context)

参数 描述
filename 必需。规定要读取的文件。
include_path 可选。如果您还想在 include_path(在 php.ini 中)中搜索文件的话,请设置该参数为 ‘1’。
context 可选。规定文件句柄的环境。context 是一套可以修改流的行为的选项。


提示和注释

提示:如果在 php.ini 文件中 “fopen wrappers” 已经被激活,您可以在本函数中把 URL 作为文件名来使用。


实例

<?php
echo readfile(“test.txt”);
?>

上面的代码将输出:

There are two lines in this file.
This is the last line.
57


完整的 PHP Filesystem 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2207.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900