diff options
Diffstat (limited to 'test/php/mirror')
-rw-r--r-- | test/php/mirror/index.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/php/mirror/index.php b/test/php/mirror/index.php new file mode 100644 index 00000000..ffd2291d --- /dev/null +++ b/test/php/mirror/index.php @@ -0,0 +1,5 @@ +<?php +$body = file_get_contents('php://input'); +header('Content-Length: ' . strlen($body)); +echo $body; +?> |