php8.5
Home/ Manual/ predefined / fiber/ Fiber::throw

Fiber::throw

PHP function Edit on GitHub ✎

(PHP 8 >= 8.1.0)

Resumes execution of the fiber with an exception

Description

Fiber::throw(Throwable $exception): mixed

Resumes the fiber by throwing the given exception from the current Fiber::suspend call.

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

Parameters

exception

The exception to throw into the fiber from 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.

Examples

php
<?php

$fiber = new Fiber(function () {
   try {
       // Suspend execution of the fiber declaring an interruption point
       Fiber::suspend();
   } catch (Throwable $e) {
       echo $e->getMessage();
   }
});

$fiber->start();

// Resumes execution of the fiber with
// passing the Exception to throw at the interruption point
$fiber->throw(new Exception('Message of an exception thrown at the current interrupt point'));

?>

The above example will output something similar to:

output
Message of an exception thrown at the current interrupt point

Source: language/predefined/fiber/throw.xml · from the official PHP manual (php/doc-en)