我试图通过 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 甚至存在吗?
提前致谢