Files
glastree/vendor/sabre/http/tests/www/large.php
T

8 lines
141 B
PHP
Raw Normal View History

2026-05-28 09:34:28 +02:00
<?php
$data = str_repeat('x', 32 * 1024 * 1024);
header('Content-Length: '.strlen($data));
header('Content-Type: text/plain');
echo $data;