Home > Backend Development > PHP Tutorial > PHP4用户手册:函数-file_PHP

PHP4用户手册:函数-file_PHP

WBOY
Release: 2016-06-01 12:38:59
Original
853 people have browsed it

手册

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"。

 

 

// 获得一个网页的数组并打印它
$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(), 和 popen().

 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template