Fiber::isTerminated
PHP Manual
PHP Manual»Fiber»Fiber::isTerminated

Fiber::isTerminated

(PHP 8 >= 8.1.0)

Fiber::isTerminatedDetermines if the fiber has terminated

Опис

public function Fiber::isTerminated(): bool

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

Returns true only after the fiber has terminated, either by returning or throwing an exception; otherwise false is returned.

To Top