mirror of
https://github.com/dunglas/frankenphp.git
synced 2025-12-24 13:38:11 +08:00
* test: fix and refactor some flaky tests * better fix for flush.php * simpler DHA config
10 lines
132 B
PHP
10 lines
132 B
PHP
<?php
|
|
|
|
do {
|
|
$ok = frankenphp_handle_request(function (): void {
|
|
echo 'Hello, world';
|
|
});
|
|
|
|
die();
|
|
} while ($ok);
|