Minimal code to reproduce:
<?phpdo {
$running = false;
//$running = frankenphp_handle_request(function (): void {$fiber = newFiber(function() {
echo"Starting Fiber\n";
});
$fiber->start();
//});
} while ($running);With some slight modifications, it can also be reproduced in worker mode.
Minimal code to reproduce:
With some slight modifications, it can also be reproduced in worker mode.