PHP 写入服务器上的文件
PHP writing to file on server
我正在尝试写入本地服务器上的一个文件,但我不明白为什么,我还没有找到任何充分的理由说明我正在做的事情不起作用。
我尝试过的:
file_put_contents("./lol.txt", "Contents");
file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/lil.txt", "Contents");
file_put_contents($_SERVER['DOCUMENT_ROOT'] . "lal.txt", "Contents");
file_put_contents("lel.txt", "Contents");
如果需要,我会提供任何其他信息。
Use realpath — Returns canonicalized absolute pathname
file_put_contents(真实路径("somedirectory/somefile.txt"),$content);
and check the permission for folder and file whether you have write
access.
我正在尝试写入本地服务器上的一个文件,但我不明白为什么,我还没有找到任何充分的理由说明我正在做的事情不起作用。
我尝试过的:
file_put_contents("./lol.txt", "Contents");
file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/lil.txt", "Contents");
file_put_contents($_SERVER['DOCUMENT_ROOT'] . "lal.txt", "Contents");
file_put_contents("lel.txt", "Contents");
如果需要,我会提供任何其他信息。
Use realpath — Returns canonicalized absolute pathname
file_put_contents(真实路径("somedirectory/somefile.txt"),$content);
and check the permission for folder and file whether you have write access.