PHP Velho Oeste 2024

Fiber::resume

(PHP 8 >= 8.1.0)

Fiber::resumeResumes execution of the fiber with a value

Description

public Fiber::resume(mixed $value = null): mixed

Resumes the fiber using the given value as the result of the current Fiber::suspend() call.

If the fiber is not suspended when this method is called, a FiberError will be thrown.

Parameters

value

The value to resume the fiber. This value will be the return value of the current Fiber::suspend() call.

Return Values

The value provided to the next call to Fiber::suspend() or null if the fiber returns. If the fiber throws an exception before suspending, it will be thrown from the call to this method.

add a note add a note

User Contributed Notes

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