WP_Background_Process::time_exceeded() protected WC 1.0
Time exceeded.
Ensures the batch never exceeds a sensible time limit. A timeout limit of 30s is common on shared hosting.
{} Это метод класса: WP_Background_Process{}
Хуки из метода
Возвращает
true/false.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->time_exceeded();
Код WP_Background_Process::time_exceeded() WP Background Process::time exceeded WC 5.0.0
protected function time_exceeded() {
$finish = $this->start_time + apply_filters( $this->identifier . '_default_time_limit', 20 ); // 20 seconds
$return = false;
if ( time() >= $finish ) {
$return = true;
}
return apply_filters( $this->identifier . '_time_exceeded', $return );
}