Files
service_dav/lib/vendor/sabre/http/tests/www/large.php
T
2026-07-14 18:24:31 -04:00

8 lines
141 B
PHP

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