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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。