large.php 141 B

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