diff options
Diffstat (limited to 'test/php/variables/index.php')
-rw-r--r-- | test/php/variables/index.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/php/variables/index.php b/test/php/variables/index.php new file mode 100644 index 00000000..8f2e3bfc --- /dev/null +++ b/test/php/variables/index.php @@ -0,0 +1,13 @@ +<?php +$body = file_get_contents('php://input'); + +header('Content-Length: ' . strlen($body)); +header('Request-Method: ' . $_SERVER['REQUEST_METHOD']); +header('Request-Uri: ' . $_SERVER['REQUEST_URI']); +header('Http-Host: ' . $_SERVER['HTTP_HOST']); +header('Server-Protocol: ' . $_SERVER['SERVER_PROTOCOL']); +header('Server-Software: ' . $_SERVER['SERVER_SOFTWARE']); +header('Custom-Header: ' . $_SERVER['HTTP_CUSTOM_HEADER']); + +echo $body; +?> |