file
(PHP3 , PHP4)
file --- 读取文件全部内容到数组中
语法 :
array file
(string filename [, int use_include_path])说明 :
与readfile( )相同,不同处在于此函数是传回数组,各个数组的元素相当于文件中的行数。新行(newline)依旧是附属的。
如果你想要在include_path中搜寻文件,你可以使用第二个参数并且将它设为"1"。
<?php
// get a web page into an array and print it out
$fcontents = file ('http://www.php.net');
while (list ($line_num, $line) = each ($fcontents)) {
echo "<b>Line $line_num:</b> " . htmlspecialchars ($line) . "<br>\n";
}
// get a web page into a string
$fcontents = join ('', file ('http://www.php.net'));
?>
参考 : readfile( ) fopen( ) popen( )