【急】php不能写入文件
<?php$file="test.txt";$string='str';$fh=fopen($file,'ab');fwrite($fh,$string);fclose(...
<?php
$file="test.txt";
$string='str';
$fh=fopen($file,'ab');
fwrite($fh,$string);
fclose($fh);
?>
Warning: fopen(test.txt): failed to open stream: Permission denied in /web/php/tieba/test/upload.php on line 4 Warning: fwrite() expects parameter 1 to be resource, boolean given in /web/php/tieba/test/upload.php on line 5 Warning: fclose() expects parameter 1 to be resource, boolean given in /web/php/tieba/test/upload.php on line 6 展开
$file="test.txt";
$string='str';
$fh=fopen($file,'ab');
fwrite($fh,$string);
fclose($fh);
?>
Warning: fopen(test.txt): failed to open stream: Permission denied in /web/php/tieba/test/upload.php on line 4 Warning: fwrite() expects parameter 1 to be resource, boolean given in /web/php/tieba/test/upload.php on line 5 Warning: fclose() expects parameter 1 to be resource, boolean given in /web/php/tieba/test/upload.php on line 6 展开
5个回答
推荐于2018-03-26 · 知道合伙人软件行家
关注
展开全部
用
chmod() 函数,
示例:
chmod("URL",0777); //URL是你文件的地址,0777代表权限是可读可写的意思
chmod() 函数,
示例:
chmod("URL",0777); //URL是你文件的地址,0777代表权限是可读可写的意思
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看系统运行环境,设置好文件权限就可以了,要都读写权限。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
创建一个 test.txt 设置属性为 0666 ,可以通过FTP设置,也可以通过cpanel设置
或者将 test.txt所在的文件夹目录的属性设置成0777,不过不建议这么做
更多文件属性的问题,可以参照参考资料的文章
或者将 test.txt所在的文件夹目录的属性设置成0777,不过不建议这么做
更多文件属性的问题,可以参照参考资料的文章
参考资料: http://www.storyday.com/html/y2009/2411_linux-file-and-folder-permissions.html
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把你的$fh=fopen($file,'ab')改成$fh=fopen($file,"r")
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询