file
(PHP 3, PHP 4 >= 4.0.0)
file -- 读取整个 文件到数组描述
array file
(string filename [, int use_include_path])
除了file()返回的是数组,其它的与服务器脚本类/PHP/PHP用户手册/fancy/function.readfile.html">readfile()一样。数组的每个元素对应文件的每一行,而带有换行符。
如果你想在包含路径中搜索文件,你可以使用可选的第二个参数并把它设置为"1"。
<?php // 获得一个网页的数组并打印它 $fcontents = file ('http://www.php.NET/'); while (list ($line_num, $line) = each ($fcontents)) { echo "Line $line_num:; ", htmlspecialchars ($line), "
n"; } // 获得一个网页到字符串中 $fcontents = join ('', file ('http://www.php.net/')); ?>
这个函数不能用于二进制!
提示:如果"fopen wrappers"配置已经打开,你可以在这个函数中使用 URL 作为文件名。
参见readfile(), fopen(), fsockopen.html">fsockopen(), 和 popen().
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/10752043/viewspace-991077/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/10752043/viewspace-991077/