Statement on glibc/iconv Vulnerability

The Fiber class

(PHP 8 >= 8.1.0)

Introducción

Fibers represent full-stack, interruptible functions. Fibers may be suspended from anywhere in the call-stack, pausing execution within the fiber until the fiber is resumed at a later time.

Sinopsis de la Clase

final class Fiber {
/* Métodos */
public __construct(callable $callback)
public start(mixed ...$args): mixed
public resume(mixed $value = null): mixed
public throw(Throwable $exception): mixed
public getReturn(): mixed
public isStarted(): bool
public isSuspended(): bool
public isRunning(): bool
public isTerminated(): bool
public static suspend(mixed $value = null): mixed
public static getCurrent(): ?Fiber
}

Ver también

Fibers overview

Tabla de contenidos

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top