frankenphp/testdata/exception.php
2022-10-11 10:54:30 +02:00

9 lines
138 B
PHP

<?php
require_once __DIR__.'/_executor.php';
return function () {
echo 'hello';
throw new Exception("request {$_GET['i']}");
};