PHP readfile() 函數(shù)
PHP readfile() 函數(shù)

定義和用法
readfile() 函數(shù)讀取一個(gè)文件,并寫入到輸出緩沖。
如果成功,該函數(shù)返回從文件中讀入的字節(jié)數(shù)。如果失敗,該函數(shù)返回 FALSE 并附帶錯(cuò)誤信息。您可以通過在函數(shù)名前面添加一個(gè) '@' 來隱藏錯(cuò)誤輸出。
語法
readfile(filename,include_path,context)
參數(shù) | 描述 |
---|---|
filename | 必需。規(guī)定要讀取的文件。 |
include_path | 可選。如果您還想在 include_path(在 php.ini 中)中搜索文件的話,請(qǐng)?jiān)O(shè)置該參數(shù)為 '1'。 |
context | 可選。規(guī)定文件句柄的環(huán)境。context 是一套可以修改流的行為的選項(xiàng)。 |
提示和注釋
提示:如果在 php.ini 文件中 "fopen wrappers" 已經(jīng)被激活,您可以在本函數(shù)中把 URL 作為文件名來使用。
實(shí)例
<?php
echo readfile("test.txt");
?>
echo readfile("test.txt");
?>
上面的代碼將輸出:
There are two lines in this file.
This is the last line.
57
This is the last line.
57

相關(guān)文章
- PHP 字符串
- PHP Switch 語句
- PHP 數(shù)組排序
- PHP 函數(shù)
- PHP 命名空間 namespace
- PHP 發(fā)送電子郵件
- PHP Secure E-mails
- PHP array_change_key_case() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP count() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sort() 函數(shù)
- PHP usort() 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP Libxml 函數(shù)
- PHP 雜項(xiàng) 函數(shù)