[now dev] $_GET: first argument has "?" as first character
See original GitHub issueCode:
<?php var_dump($_GET);
http://localhost:8080/services/test?test=test&test2=test2
Output:
array(2) { [“?test”]=> string(4) “test” [“test2”]=> string(5) “test2” }
Issue Analytics
- State:
- Created 4 years ago
- Comments:7
Top Results From Across the Web
How to get first character of string? - javascript - Stack Overflow
If "start" is greater than "end", this method will swap the two arguments, meaning str.substring(1, 4) == str.substring(4, 1). If either "start" ...
Read more >When is the first element in the argument list regarded as a ...
the first element of a list is interpreted as a function symbol. That's the most common case, but it isn't an absolute rule....
Read more >How to find the first and last character of a string in Java
The idea is to use charAt() method of String class to find the first and last character in a string. The charAt() method...
Read more >Useful string methods - Learn web development | MDN
So now that you know how to find the first occurrence of a substring, ... certain character, you don't have to include the...
Read more >12.8 String Functions and Operators - MySQL :: Developer Zone
Returns NULL if either argument is NULL . This function does not work properly if the first argument contains a comma ( ,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Should be fixed. Thanks for report.
Oh, now it works, thank you!