入门客AI创业平台(我带你入门,你带我飞行)
博文笔记

php打开文件失败

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

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);

声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
  • 上一篇:没有了
  • 下一篇:没有了
未上传头像