We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3b0465 commit 66ea0ddCopy full SHA for 66ea0dd
src/Request.php
@@ -677,7 +677,7 @@ public static function getPathInfo(): ?string
677
*/
678
public static function getQueryString(): ?string
679
{
680
- return $_SERVER['QUERY_STRING'] ?? null;
+ return $_SERVER['QUERY_STRING'] ?? parse_url($_SERVER['REQUEST_URI'], PHP_URL_QUERY) ?? null;
681
}
682
683
/**
0 commit comments