freescout-calendar-module/vendor/sabre/http/tests/www/large.php
2024-09-10 16:29:40 +02:00

7 lines
141 B
PHP

<?php
$data = str_repeat('x', 32 * 1024 * 1024);
header('Content-Length: '.strlen($data));
header('Content-Type: text/plain');
echo $data;