PHP parse_str() Function Last Updated : 11 Jul, 2025 Comments Improve Suggest changes 1 Likes Like Report The parse_str() function is a built-in function in PHP which parses a query string into variables. The string passed to this function for parsing is in the format of a query string passed via a URL. Syntax : parse_str($string, $array) Parameters: This function accepts two parameters as shown in the above syntax out of which the first parameter must be supplied and the second one is optional. All of these parameters are described below: $string: It specifies the string to parse. $array: This is an optional parameter which specifies the name of an array to store the variables. This parameter indicates that the variables will be stored in an array. Examples: Input : "name=Richik&age=20" Output : $name = Richik $age = 20 Input : "roll_no=2&year=2nd&gpa=8.3" Output : $roll_no = 2 $year = 2nd $gpa = 8.3 Below programs illustrate the parse_str() function in PHP: Program 1 : php <?php parse_str("name=Richik&age=20"); echo $name."\n".$age; ?> Output: Richik 20 Program 2:In this program we will store the variables in an array and then display the array using print_r() function. php <?php parse_str("roll_no=2&year=2nd&gpa=8.3", $array); print_r($array); ?> Output: Array ( [roll_no] => 2 [year] => 2nd [gpa] => 8.3 ) Reference: https://www.php.net/manual/en/function.parse-str.php Create Quiz Comment R RICHIK BHATTACHARJEE Follow 1 Improve R RICHIK BHATTACHARJEE Follow 1 Improve Article Tags : Misc Web Technologies PHP PHP-string Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like