牛骨文教育服务平台(让学习变的简单)
博文笔记

php打开文件失败

创建时间:2015-10-13 投稿人: 浏览次数:2083

1、在linux环境下用PHP脚本fopen打开文件“t1.txt”,路径写成“/test/t1.txt”时出错

Warning: fopen(/test/t1.txt) [function.fopen]: failed to open stream: No such file or directory in /var/www/test/5-3.php on line 24

Unable to open file!
原始代码如下:

$file = fopen("/test/t1.txt", "r") or exit("Unable to open file!");
 //Output a line of the file until the end is reached
 while(!feof($file))
   {
   echo fgets($file). "<br />";
   }
 fclose($file);

 

2、解决方法

我查了一些资料发现是路径不完整造成的,写成 /var/www/test/t1.txt 就可以了。

修改后的代码:

$file = fopen("/var/www/test/t1.txt", "r") or exit("Unable to open file!");
 //Output a line of the file until the end is reached
 while(!feof($file))
   {
   echo fgets($file). "<br />";
   }
 fclose($file);

声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。