我正在尝试将一些文本内容写入php中的文件。
我正在使用file_put_contents。
我的代码看起来像这样
<?php
file_put_contents('/var/www/html/test.txt', 'this is my content');
但无论我做什么,这都会导致错误。它说file_put_contents centos无法打开流
文件夹存在,我只是试图给html文件夹777权限。但没有任何作用。
奇怪的是,如果我改变了临时目录的路径
<?php
file_put_contents('/tmp/test.txt', 'this is my content');
然后写入没有错误。
我正在使用centos 7和GUI版本。
非常感谢任何帮助。