2024年6月11日发(作者:)

if (pcntl_fork())

{

// some long time code which should be

// terminated after $real_execution_time_limit seconds passed if it's not

// finished by that time

}

else

{

sleep($real_execution_time_limit);

posix_kill(posix_getppid(), SIGKILL);

}