PHP头条
热点:

PHP4用户手册:函数-file


TABLE border=0 cellPadding=0 cellSpacing=0 height="100%" width="100%">
 
(PHP 3, PHP 4 >= 4.0.0)
file -- 读取整个文件到数组
描述
 
array file (string filename [, int use_include_path])
 
除了file()返回的是数组,其它的与readfile()一样。数组的每个元素对应文件的每一行,而带有换行符。
注意:在结果数组中的每行包含着行结尾,如果你不想要行结尾你可使用trim() 函数去掉它。
如果你想在包含路径中搜索文件,你可以使用可选的第二个参数并把它设置为"1"。
 
 
<?php
// 获得一个网页的数组并打印它
$fcontents = file ('http://www.php.net/');
while (list ($line_num, $line) = each ($fcontents)) {
      echo "<b>Line $line_num:</b>; ", htmlspecialchars ($line), "<br> ";
}
// 获得一个网页到字符串中
$fcontents = join (', file ('http://www.php.net/'));
?>
 
 
警告
这个函数不能用于二进制!
 
提示:如果"fopen wrappers"配置已经打开,你可以在这个函数中使用 URL 作为文件名。
参见readfile(), fopen(), fsockopen(), 和 popen().
 

www.phpzy.comtrue/php/3538.htmlTechArticlePHP4用户手册:函数-file TABLE border=0 cellPadding=0 cellSpacing=0 height=100% width=100% (PHP 3, PHP 4 = 4.0.0) file -- 读取整个文件到数组 描述 array file (string filename [, int use_include_path]) 除了file()返回的是数...

相关文章

    暂无相关文章
相关频道:

PHP之友评论

今天推荐