frankenphp/testdata/large-request.php

12 lines
211 B
PHP
Raw Normal View History

2023-08-16 08:20:52 +00:00
<?php
require_once __DIR__.'/_executor.php';
return function () {
printf(
'Request body size: %d (%s)',
strlen(file_get_contents('php://input')),
$_GET['i'] ?? 'unknown',
);
};