我在运行一个连续的后台进程时遇到问题,其中父进程启动 2 或 3 个子进程然后自行结束,子进程的计算量很大,因此它们将花费大量时间。
我正在使用 exec 命令启动进程,但不知道它不会启动,也不会产生任何错误(错误报告已打开,E_ALL 和 display_errors)
这是我试图做到这一点的方法
error_reporting(E_ALL);
ini_set('display_errors',1);
$output = '';
$dir = dirname(__FILE__).'/';
//$cmd = "nohup php {$dir}/background-service.php > /dev/null & echo $!";
$cmd = "nohup php background-service.php >/dev/null 2>&1 &";
exec($cmd );
后台服务.php
<?php
ini_set('max_execution_time', 0);
ini_set('display_errors',1);
file_put_contents('a'.time().'.txt',"this is the test code");
?>
当我直接点击文件时,它会生成一个文件,但不是使用 exec,我已经测试了 exec 已启用(ubuntu 服务器)
if ( $safe_mode = ini_get( 'safe_mode' ) && strtolower( $safe_mode ) != 'off' )
{
echo 'Safe Mode is Disabled';
}
else
echo 'Safe Mode is Enabled<br/>';
if ( in_array( 'exec', array_map( 'trim', explode( ',', ini_get( 'disable_functions' ) ) ) ) )
{
echo 'exec is Disabled';
}
else
echo 'exec is Enabled<br/>';
有人请告诉我哪里错了,我如何检测它是否被服务器禁用
谢谢