PHP: parse_str() function
PHP: Parses the string into variables
The parse_str() function parses a query string into variables.
Version:
(PHP 4 and above)
Syntax:
parse_str(input_string, var_array)
Parameter:
Name | Description | Required / Optional |
Type |
---|---|---|---|
input_string | The input string. | Required | String |
var_array | If present, it stores variables as array elements. | Optional | Array |
Return value:
No value is returned.
Pictorial Presentation
Example:
<?php
parse_str('id=100&name=nicholas%20haddin');
echo $id.'<br>';
echo $name;
?>
Output:
100 nicholas haddin
View the example in the browser
See also
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/php/function-reference/parse_str.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics