Fiber::isTerminated

(PHP 8 >= 8.1.0)

Fiber::isTerminatedDetermines if the fiber has terminated

Descripción

publicFiber::isTerminated(): bool

Parámetros

Esta función no tiene parámetros.

Valores devueltos

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

To Top