我正在尝试将变量的内容写入 .php 文件,以便稍后通过 requite_once 访问该文件,并稍后使用该变量。
我尝试写入的目录具有 755 权限,我与托管服务提供商交谈,他们说我现在可以写入该目录。
但是,该文件没有被写入。这是我试图用来编写文件的代码:
error_reporting(-1);
$elasticaObject = var_export($elasticaObject, true);
file_put_contents('theIndex.php', $elasticaObject);
echo "done!";
我得到了 done!done!done! 的输出!
但是,该文件没有被写入,因为当我尝试访问它时出现 404 错误,并且因为它在目录列表中不存在。