PHP file() 函數(shù)
PHP file() 函數(shù)

定義和用法
file() 函數(shù)把整個文件讀入一個數(shù)組中。
數(shù)組中的每個元素都是文件中相應(yīng)的一行,包括換行符在內(nèi)。
語法
file(path,include_path,context)
參數(shù) | 描述 |
---|---|
path | 必需。規(guī)定要讀取的文件。 |
include_path | 可選。如果您還想在 include_path(在 php.ini 中)中搜索文件的話,請?jiān)O(shè)置該參數(shù)為 '1'。 |
context | 可選。規(guī)定文件句柄的環(huán)境。context 是一套可以修改流的行為的選項(xiàng)。若使用 NULL,則忽略。 |
提示和注釋
提示:從 PHP 4.3 開始,該函數(shù)是二進(jìn)制安全的。(意思是二進(jìn)制數(shù)據(jù)(如圖像)和字符數(shù)據(jù)都可以使用此函數(shù)寫入。)
實(shí)例
<?php
print_r(file("test.txt"));
?>
print_r(file("test.txt"));
?>
上面的代碼將輸出:
Array
(
[0] => Hello World. Testing testing!
[1] => Another day, another line.
[2] => If the array picks up this line,
[3] => then is it a pickup line?
)
(
[0] => Hello World. Testing testing!
[1] => Another day, another line.
[2] => If the array picks up this line,
[3] => then is it a pickup line?
)

相關(guān)文章
- PHP 安裝
- PHP echo 和 print 語句
- PHP 包含文件 include 和 require 語句
- PHP 文件上傳
- PHP Secure E-mails
- PHP 過濾器
- PHP array() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_diff_key() 函數(shù)
- PHP array_intersect() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP key() 函數(shù)
- PHP list() 函數(shù)
- PHP usort() 函數(shù)
- PHP Filter 函數(shù)
- PHP FTP 函數(shù)