php – shell_exec没有在后台运行?
作者:互联网
我有以下执行完美但不在后台应该执行?它实际上会停止页面加载,直到它完成,这是不好的.
shell_exec("/usr/bin/php /home/public_html/pages/test/backg.php {$user_info} {$user_info2} {$user_info3} &");
我也试过了
exec("/usr/bin/php /home/public_html/pages/test/backg.php {$user_info} {$user_info2} {$user_info3} &");
我以为
&
意味着它会执行然后让持有页面继续吗?
解决方法:
exec(sprintf("%s > %s 2>&1 & echo $! >> %s", $cmd, $outputfile, $pidfile));
php execute a background process
我也发现了这个:
exec("/usr/bin/php /path/background.php > /dev/null 2>&1 &");
标签:shell-exec,php,background-process,exec 来源: https://codeday.me/bug/20190826/1729290.html