Parse a query string into variables:
<?php
parse_str("name=Peter&age=43");
echo $name."<br>";
echo $age;
?>
Try it Yourself »
The parse_str() function parses a query string into variables.
Note:Note: The magic_quotes_gpc setting in the php.ini file affects the output of this function. If enabled, the variables are converted by addslashes() before parsed by parse_str().
parse_str(
string,array)
Parameter | Description |
---|---|
string | Required. Specifies the string to parse |
array | Optional (Required from PHP 7.2). Specifies the name of an array to store the variables. This parameter indicates that the variables will be stored in an array. |
Return Value: | No value is returned |
---|---|
PHP Version: | 4+ |
Changelog: | PHP 7.2.0 - The array parameter is required. PHP 4.0.3 - Added the array parameter. |
Store the variables in an array:
<?php
parse_str("name=Peter&age=43",$myArray);
print_r($myArray);
?>
Try it Yourself »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!