mirror of
https://github.com/php/frankenphp.git
synced 2026-03-24 09:02:11 +01:00
10 lines
176 B
PHP
10 lines
176 B
PHP
<?php
|
|
require_once __DIR__.'/_executor.php';
|
|
|
|
return function() {
|
|
$fiber = new Fiber(function() {
|
|
echo 'Fiber '.($_GET['i'] ?? '');
|
|
});
|
|
$fiber->start();
|
|
};
|