Function parse_query
Parse a query string into an associative array.
If multiple values are found for the same key, the value of that key value pair will become an array. This function does not parse nested PHP style arrays into an associative array (e.g., foo[a]=1&foo[b]=2 will be parsed into ['foo[a]' => '1', 'foo[b]' => '2']).
string |
$str |
Query string to parse |
boolean|string |
$urlEncoding = true |
How the query string is encoded |
array
|
array |