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