<?php
//首先采用“fopen”函数打开文件,得到返回值的就是资源类型。
$file_handle = fopen("/data/webroot/resource/php/f.txt","r");//读取不到文件,报错了
//PHP Warning: fopen(/data/webroot/resource/php/f.txt): failed to open stream: No such file or directory in index.php on line 3
//PHP Warning: fclose() expects parameter 1 to be resource, boolean given in index.php on line 12
if ($file_handle){
//接着采用while循环(后面语言结构语句中的循环结构会详细介绍)一行行地读取文件,然后输出每行的文字
while (!feof($file_handle)) { //判断是否到最后一行
$line = fgets($file_handle); //读取一行文本
echo $line; //输出一行文本
echo "<br />"; //换行
}
}
fclose($file_handle);//关闭文件
?>
路径不对
常见错误:
1路径不对
2文件不存在
3没有权限