6 lines
107 B
PHP
6 lines
107 B
PHP
<?php
|
|
$body = file_get_contents('php://input');
|
|
header('Content-Length: ' . strlen($body));
|
|
echo $body;
|
|
?>
|