PHP file() 函数用法及示例

PHP Filesystem 参考手册

file()函数可以将整个文件读入数组,并且数组中的每个元素都是文件中的对应行,包括换行符。

语法

array file ( string $filename [, int $flags = 0 [, resource $context ]] )

在线示例

<?php
   print_r(file("/PhpProject/sample.txt"));
?>

输出结果

Array
(
    [0] => (cainiaojc.com)
    [1] => www.cainiaojc.com
    [2] => TP
)

PHP Filesystem 参考手册