diff options
author | marliotto <[email protected]> | 2020-01-27 16:04:26 +0300 |
---|---|---|
committer | marliotto <[email protected]> | 2020-01-27 16:04:26 +0300 |
commit | e00d36c57c1227e614b0572ab0c0df98032f4298 (patch) | |
tree | 46d61d1db03692f3c75f931d290471f333f8fa2c /tests | |
parent | 648aac1b800fe506fe41f9143c2a4a2d95be408d (diff) |
fix REQUEST_URI for requests through FastCGI
Diffstat (limited to 'tests')
-rw-r--r-- | tests/http/request-uri.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/http/request-uri.php b/tests/http/request-uri.php new file mode 100644 index 00000000..d4c87551 --- /dev/null +++ b/tests/http/request-uri.php @@ -0,0 +1,10 @@ +<?php + +use Psr\Http\Message\ResponseInterface; +use Psr\Http\Message\ServerRequestInterface; + +function handleRequest(ServerRequestInterface $req, ResponseInterface $resp): ResponseInterface +{ + $resp->getBody()->write($_SERVER['REQUEST_URI']); + return $resp; +} |