这取决于您的实施。PHP 中 99% 的函数都是阻塞的。意思是在当前功能完成之前,处理不会继续。但是,如果函数包含循环,您可以添加自己的代码以在满足特定条件后中断循环。
像这样的东西:
foreach ($array as $value) {
perform_task($value);
}
function perform_task($value) {
$start_time = time();
while(true) {
if ((time() - $start_time) > 300) {
return false; // timeout, function took longer than 300 seconds
}
// Other processing
}
}
无法中断处理的另一个示例:
foreach ($array as $value) {
perform_task($value);
}
function perform_task($value) {
// preg_replace is a blocking function
// There's no way to break out of it after a certain amount of time.
return preg_replace('/pattern/', 'replace', $value);
}