我在使用 php 时遇到了一个非常简单的问题
file_put_contents("somefile.txt",$content)
它可以工作,但是当我尝试将文件放在某个目录中时,例如-
file_put_contents("somedirectory/sonefile.txt",$content);
它不起作用。知道我缺少什么吗?
确切的代码是 -
file_put_contents($_SERVER['DOCUMENT_ROOT']."/temp_code/code.txt",$code);