Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试设置一个小脚本以允许 php 将数据附加到文件中
该文件是 etc/httpd/conf/httpd.conf
我想自动将数据添加到文件中以供 vhost 使用...
echo shell_exec('echo "hello" >> /etc/httpd/conf/httpd.conf');
代码不工作,不输出任何东西
我有一种感觉是由于工作目录,
我欢迎使用任何其他方式来执行此操作...但必须能够通过 php 窗口调用
可能是权限问题。你的 httpd.conf 有什么权限?ls -l /etc/httpd/conf/httpd.conf如果你在 Linux/Mac 上,你可以检查使用。
ls -l /etc/httpd/conf/httpd.conf