<完整PHP文件系统参考
定义和用法
的file()读取一个文件到一个数组。
每个阵列元素都包含了文件中的一行,与换行还连着。
句法
file(path,include_path,context)
参数 | 描述 |
---|---|
path | 需要。 指定文件的读取 |
include_path | 可选的。 将此参数设置为“1”,如果你想搜索在include_path文件(in php.ini)以及 |
context | 可选的。 指定文件句柄的环境。 Context是一组可以修改流的行为的选项。 可以通过使用NULL被跳过。 |
提示和注意
Tip:这个函数在PHP 4.3成为二进制安全的。 (意味着:二进制数据,如图像和字符数据可以与该功能被写入)。
例
<?php
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?
)
<完整PHP文件系统参考