我试图使用shell_exec
命令从另一个PHP脚本调用PHP脚本。当我使用相同的用户在shell中输入相同的命令时,一切都按预期工作。但是,当我在PHP中调用它时,我得到以下输出:
X-Powered-By: PHP/5.3.23
Content-type: text/html
我的PHP电话是:
shell_exec('php -f /home/site/public_html/script.php > /home/site/log.txt &');
我检查服务器配置。安全模式已关闭。 shell_exec('whoami')
正在毫无问题地工作。
答案 0 :(得分:1)
试
shell_exec('/usr/bin/php -f /home/site/public_html/script.php > /home/site/log.txt &');
或输入
whereis php
并使用给定的路径。