mirror of
https://github.com/dunglas/frankenphp
synced 2024-11-22 16:19:32 +00:00
12 lines
211 B
PHP
12 lines
211 B
PHP
|
<?php
|
||
|
|
||
|
require_once __DIR__.'/_executor.php';
|
||
|
|
||
|
return function () {
|
||
|
printf(
|
||
|
'Request body size: %d (%s)',
|
||
|
strlen(file_get_contents('php://input')),
|
||
|
$_GET['i'] ?? 'unknown',
|
||
|
);
|
||
|
};
|