我的代码:
$ffff = fopen("quce/1459412934LxKWY.", 'w');
fwrite($ffff, 'test');
fclose($ffff);
和构建结果:
PHP警告:fopen(quce / 1459412934LxKWY。):无法打开流: 权限被拒绝
答案 0 :(得分:0)
此问题也可能是由于启用了SELinux导致的。可以使用以下方法解决:
chown -R apache:apache /var/www/html/directory_to_write
chcon -R -t httpd_sys_content_t /var/www/html/directory_to_write
chcon -R -t httpd_sys_rw_content_t /var/www/html/directory_to_write
中找到有关上下文的更多信息。