Files
nginx-unit/test/php/mirror/index.php
2018-05-22 20:20:14 +03:00

6 lines
107 B
PHP

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