1 2 3 4 5 6 7 8 9 10
<?php use \Psr\Http\Message\ServerRequestInterface; use \Psr\Http\Message\ResponseInterface; function handleRequest(ServerRequestInterface $req, ResponseInterface $resp): ResponseInterface { $resp->getBody()->write(strtoupper($req->getQueryParams()['hello'])); return $resp->withStatus(201); }