PHP file_get_contents() 函數(shù)
PHP file_get_contents() 函數(shù)

定義和用法
file_get_contents() 把整個(gè)文件讀入一個(gè)字符串中。
該函數(shù)是用于把文件的內(nèi)容讀入到一個(gè)字符串中的首選方法。如果服務(wù)器操作系統(tǒng)支持,還會使用內(nèi)存映射技術(shù)來增強(qiáng)性能。
語法
file_get_contents(path,include_path,context,start,max_length)
參數(shù) | 描述 |
---|---|
path | 必需。規(guī)定要讀取的文件。 |
include_path | 可選。如果您還想在 include_path(在 php.ini 中)中搜索文件的話,請?jiān)O(shè)置該參數(shù)為 '1'。 |
context | 可選。規(guī)定文件句柄的環(huán)境。context 是一套可以修改流的行為的選項(xiàng)。若使用 NULL,則忽略。 |
start | 可選。規(guī)定在文件中開始讀取的位置。該參數(shù)是 PHP 5.1 中新增的。 |
max_length | 可選。規(guī)定讀取的字節(jié)數(shù)。該參數(shù)是 PHP 5.1 中新增的。 |
提示和注釋
提示:該函數(shù)是二進(jìn)制安全的。(意思是二進(jìn)制數(shù)據(jù)(如圖像)和字符數(shù)據(jù)都可以使用此函數(shù)寫入。)
實(shí)例
<?php
echo file_get_contents("test.txt");
?>
echo file_get_contents("test.txt");
?>
上面的代碼將輸出:
This is a test file with test text.

相關(guān)文章
- PHP EOF(heredoc) 使用說明
- PHP 函數(shù)
- PHP 文件上傳
- PHP JSON
- PHP array_combine() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP next() 函數(shù)
- PHP prev() 函數(shù)
- PHP sort() 函數(shù)
- PHP usort() 函數(shù)
- PHP 5 Date/Time 函數(shù)