shell_exec不在后台运行吗?

问题描述 投票:4回答:1

我有以下代码可以完美执行,但不应该在后台执行?实际上,它会停止页面加载,直到完成为止。

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} &");

我认为

意味着它将执行然后让保留页面继续执行吗?

php exec background-process shell-exec
1个回答
6
投票
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 &");
© www.soinside.com 2019 - 2024. All rights reserved.