目录

PHP readfile() 函数

❮ PHP 文件系统参考

示例

读取一个文件:

<?php
echo readfile("test.txt");
?>
运行示例 »

定义和用法

readfile() 函数读取文件并将其写入输出缓冲区。

提示:如果 php.ini 文件中已启用 fopen 包装器,则可以使用 URL 作为此函数的文件名。

语法

readfile( file, include_path, context)

参数值

Parameter Description
file Required. Specifies the file to read
include_path Optional. Set this parameter to TRUE if you want to search for the file in the include_path (in php.ini) as well
context Optional. Specifies the context of the file handle. Context is a set of options that can modify the behavior of a stream


技术细节

返回值: 成功时读取的字节数,失败时读取的字节数为 FALSE,错误时读取的字节数。您可以通过在函数名称前面添加“@”来隐藏错误消息
PHP 版本: 4.0+
PHP 变更日志: PHP 5.0:添加context支持

❮ PHP 文件系统参考