Files
archived-frankenphp/testdata/fiber-basic.php
Joe Watkins 799a9d5cb1 Fix #46
This is the bare minimum required to make fibers work within the go
  runtime.
2024-07-25 12:45:23 +02:00

10 lines
176 B
PHP

<?php
require_once __DIR__.'/_executor.php';
return function() {
$fiber = new Fiber(function() {
echo 'Fiber '.($_GET['i'] ?? '');
});
$fiber->start();
};