How to open and close files in php

< html >
< body >
<? php
$file
= fopen( " welcome.txt " , " r " ) or exit( " Unable to open file! " ); // open "welcom.txt"file, 只读方式
while ( ! feof($file)) // 当还未达到文件的末端(EOF)时
{
echo fgets($file).
" <br/> " ; // 从文件中逐行读取文件
}
if (feof($file)) echo  " End of file " ;
fclose($file);
// 关闭文件

?>
</ body >
</ html >

//-----------------------------------------------------------------------------------------------------------------------------------------------------
fopen只是“打开”一个文件,并保存为一个资源变量。 这个资源变量里面并不包括文件的内容。 如果只是想显示文件内容,可用下面的语句: require_once "welcome.txt";
另外还有一个函数:
fgetc() 函数:用于从文件逐字符地读取文件。 注释:在调用该函数之后,文件指针会移动到下一个字符。

你可能感兴趣的:(How to open and close files in php)