readfile() 函数可以读取文件并将其写入输出缓冲区。此函数可以返回成功时读取的字节数,或失败时返回错误和错误。我们可以通过在函数名称前添加 '@' 来隐藏错误输出。
用法
int readfile ( string $filename [, bool $use_include_path = FALSE [, resource $context ]] )
此函数可以读取文件并将其写入输出缓冲区。如果在 php.ini 文件中启用了 fopen() 函数包装器,我们可以使用 URL 作为此函数的文件名。
示例
<?php
echo readfile("/PhpProject/sample.txt");
?>
输出
Tutorialspoint Tutorix 23
相关用法
- PHP readfile()用法及代码示例
- PHP readfile( )用法及代码示例
- PHP read_exif_data()用法及代码示例
- PHP readdir()用法及代码示例
- PHP realpath_cache_get()用法及代码示例
- PHP realpath( )用法及代码示例
- PHP rename( )用法及代码示例
- PHP restore_error_handler()用法及代码示例
- PHP restore_exception_handler()用法及代码示例
- PHP rewind( )用法及代码示例
- PHP rewinddir()用法及代码示例
- PHP rename()用法及代码示例
- PHP rewind()用法及代码示例
- PHP reset()用法及代码示例
- PHP rmdir()用法及代码示例
- PHP round()用法及代码示例
- PHP random_int()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Function readfile()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。