0

我正在尝试使用该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')工作没有任何问题。

4

1 回答 1

1

try

shell_exec('/usr/bin/php -f /home/site/public_html/script.php > /home/site/log.txt &');

or type

whereis php

and use the path given.

于 2013-05-28T18:48:26.017 回答