PHP—文件处理
打开文件
fopen() 函数用于在 PHP 中打开文件。
语法:fopen(filename,opentype)
filename—要打开的文件名
opentype—用哪种方式打开
例子:
<?PHP
$file=fopen("welcome.txt","r");
?>
文件可通过下列模式来打开:
模式 |
描述 |
r |
只读。在文件的开头开始。 |
r+ |
读/写。在文件的开头开始。 |
w |
只写。打开并清空文件的内容;如果文件不存在,则创建新文件。 |
w+ |
读/写。打开并清空文件的内容;如果文件不存在,则创建新文件。 |
a |
追加。打开并向文件文件的末端进行写操作,如果文件不存在,则创建新文件。 |
a+ |
读/追加。通过向文件末端写内容,来保持文件内容。 |
x |
只写。创建新文件。如果文件以存在,则返回 FALSE。 |
x+ |
读/写。创建新文件。如果文件已存在,则返回 FALSE 和一个错误。
注释:如果 fopen() 无法打开指定文件,则返回 0 (false)。 |
例子:
如果 fopen() 不能打开指定的文件,下面的例子会生成一段消息:
<?php
$file=fopen("welcome.txt","r") or exit("Unable to open file!");
?>
——————————————————
关闭文件
fclose() 函数用于关闭打开的文件。
<?php
$file = fopen("test.txt","r");
//some code to be executed
fclose($file);
?>
——————————————————
检测—到达文件末端
feof() 函数检测是否已达到文件的末端 (EOF)。
在循环遍历未知长度的数据时,feof() 函数很有用。
注释:在 w 、a 以及 x 模式,您无法读取打开的文件!
$file=fopen("welcome.txt","r");
if(feof($file)) echo"End of file";
fclose($file);
——————————————————
逐行读取文件
fgets() 函数用于从文件中逐行读取文件。
注释:在调用该函数之后,文件指针会移动到下一行。
例子:
(下面的例子逐行读取文件,直到文件末端为止)
<?php
$file = fopen("welcome.txt","r") or exit("Unable to open file");
//Output a line of this file until the end is reached
while(!feof($file))
{
echo fgets($file)."<br />"
}
fclose($file);
?>
——————————————————
逐字符读取文件
fgetc() 函数用于从文件逐字符地读取文件。
注释:在调用该函数之后,文件指针会移动到下一个字符。
例子:
(下面的例子逐字符读取文件,直到文件末端为止)
<?php
$file=fopen("welcome.txt","r") or exit("Unable to open file!");
while (!feof($file))
{
echo fgetc($file);
}
fclose($file);
?>
|