We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug The class CodeIgniter\HTTP\URI "query" property is empty even when a query string is present in the url.
CodeIgniter 4 version 4.0.0-beta.2
Affected module(s) CodeIgniter\HTTP\URI
Expected behavior I expect the "query" value of CodeIgniter\HTTP\URI to be an associative array containing the query string information.
Steps to reproduce
$request = \Config\Services::request(); var_dump($request);
Work around I'm able to get a specific query string value if i know the key by using
$request = \Config\Services::request(); $request->getGet("key");
Context
The text was updated successfully, but these errors were encountered:
Ensure query vars are part of request->uri. Fixes #2062
f9dbfea
Merge pull request #2063 from codeigniter4/queryfix
9909152
Successfully merging a pull request may close this issue.
Describe the bug
The class CodeIgniter\HTTP\URI "query" property is empty even when a query string is present in the url.
CodeIgniter 4 version
4.0.0-beta.2
Affected module(s)
CodeIgniter\HTTP\URI
Expected behavior
I expect the "query" value of CodeIgniter\HTTP\URI to be an associative array containing the query string information.
Steps to reproduce
Work around
I'm able to get a specific query string value if i know the key by using
Context
The text was updated successfully, but these errors were encountered: