0

我试图通过 shell_exec 执行一个 php 文件,这是代码:

$ex="php -f ".rtrim(dirname(__FILE__))."/sendmail.php";
if(substr(php_uname(), 0, 7) == "Windows")
    pclose(popen("start /B ".$ex,"r")); 
else
    shell_exec($ex." > /dev/null 2>/dev/null &");

问题是它在我的服务器上不起作用(我什至没有尝试过-f),但这没关系:

$ex="php-cli ".rtrim(dirname(__FILE__))."/sendmail.php";
if(substr(php_uname(), 0, 7) == "Windows")
    pclose(popen("start /B ".$ex,"r"));
else
    shell_exec($ex." > /dev/null 2> /dev/null &");

有人可以告诉我为什么它有效吗?php-cli 甚至存在吗?
提前致谢

4

1 回答 1

0

操作系统无所谓。shell_exec如果它没有被禁用,你应该可以使用php.ini

于 2013-06-28T21:07:12.963 回答