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