file()函數(shù)可以將整個文件讀入數(shù)組,并且數(shù)組中的每個元素都是文件中的對應(yīng)行,包括換行符。
array file ( string $filename [, int $flags = 0 [, resource $context ]] )
<?php print_r(file("/PhpProject/sample.txt")); ?>
輸出結(jié)果
Array ( [0] => (cainiaoplus.com) [1] => www.soo66.com [2] => TP )