php parse_str() function


Translation results:

UK[pɑ:z] US[pɑ:rs]

vt. Grammatically describe or analyze (words, sentences, etc.)

Third person singular: parses Present participle: parsing Past tense : parsed past participle: parsed

php parse_str() functionsyntax

How to use the parse_str() function?

php The parse_str() function means parsing a string into multiple variables. The syntax is parse_str(string,array). If the array parameter is not set, the variables set by this function will overwrite the existing variables. variable with the same name.

Function:Parse the query string into a variable

Syntax:parse_str(string,array)

Parameters:

Parameters Description
string Required, Specifies the string to be parsed
array Optional, specifies the name of the array to store the variable. This parameter indicates that the variable will be stored in the array.

Description:If the array parameter is not set, the variable set by this function will overwrite the existing variable with the same name. The magic_quotes_gpc setting in the php.ini file affects the output of this function. If enabled, variables are converted by addslashes() before being parsed by parse_str().

php parse_str() functionexample


Run instance»

Click the "Run instance" button to view the online instance

Output:

Array ( [id] => 23 [name] => John Adams )

Run Instance»

Click the "Run Instance" button to view the online instance

Output:

Array ( [id] => 1 [name] => "独孤求败" )

Popular Recommendations

Home

Videos

Q&A