mirror of
https://gh.wpcy.net/https://github.com/LJPc-solutions/freescout-calendar-module.git
synced 2026-07-16 18:05:21 +08:00
7 lines
141 B
PHP
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;
|