Thursday, October 16, 2025
HomeLanguagesPHP parse_str() Function

PHP parse_str() Function

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
      
    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
      
    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:
http://php.net/manual/en/function.parse-str.php

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11953 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS