标签: php permissions fopen
我遇到一个问题,我无法使用fopen创建任何文件。
我正在使用它作为测试:
<?php $myfile = fopen("testfile.txt", "w") ?>
并且在NewRelic中输出此错误(并且未创建testfile.txt):
fopen(testfile.txt):无法打开流:权限被拒绝
答案 0 :(得分:1)
因为你没有权利打开它。 确保你有权写。如果在linux上你可以使用chmod()来设置文件的右边。