<?php
$file = fopen("lala.txt", "r") or exit("unable to open the file");
?> ------------------------------------------------------------------------------------------- 关闭文件:
注释:在 w 、a 以及 x 模式,您无法读取打开的文件! ------------------------------------------------------------------------------------------- 逐行读取文件 fgets() 函数用于从文件中逐行读取文件。
注释:在调用该函数之后,文件指针会移动到下一行。
<?php
$file = fopen("Kecily.txt", "r") or exit("unable to open the file");
while(!feof($file)) {
echo fgets($file)."<br>";
}
fclose($file);
?> ------------------------------------------------------------------------------------------- 逐字符读取文件 fgetc() 函数用于从文件逐字符地读取文件。
注释:在调用该函数之后,文件指针会移动到下一个字符。
<?php
$file = fopen("Kecily.txt", "r") or exit("unable to open the file");
while(!feof($file)) {
echo fgetc($file).;
}
echo "<br>";
fclose($file);