编程语言
首页 > 编程语言> > PHP文件未写入当前目录?

PHP文件未写入当前目录?

作者:互联网

我在网络主机上有一个PHP文件,如下所示:

<?php

file_put_contents('test.txt','TEST');    
echo 'OK';

?>

但是,当我从浏览器执行页面时,不会创建文件test.txt.为什么不?是权限问题吗?

解决方法:

是的,PHP Doc说

If filename does not exist, the file is created. Otherwise, the existing file is overwritten, unless the FILE_APPEND flag is set.

仅当您在该文件夹上写有权限…时,才尝试

error_reporting(E_ALL);
ini_set("display_errors", "on");

if (! is_writable(__DIR__)) {
    trigger_error("I don't have permission");
}

file_put_contents('test.txt', 'TEST');

标签:php,web,apache,web-hosting
来源: https://codeday.me/bug/20191013/1908084.html