mirror of
https://github.com/dunglas/frankenphp
synced 2024-11-22 07:40:16 +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',
|
|
);
|
|
};
|