Fiber::start
Fiber::start
Start execution of the fiber
mixed **Fiber::start** mixed $args
A variadic list of arguments to provide to the callable used when constructing the fiber.
If the fiber has already been started when this method is called, a will be thrown.
FiberError
argsThe arguments to use when invoking the callable given to the fiber constructor.
The value provided to the first call to or null if the fiber returns.
If the fiber throws an exception before suspending, it will be thrown from the call to this method.
Fiber::suspend