Files
nginx-unit/test/php/mirror/index.php
T

6 lines
107 B
PHP

<?php
$body = file_get_contents('php://input');
header('Content-Length: ' . strlen($body));
echo $body;
?>