PHP: Parse Unparse String Array

Here is a quick tip on parsing and unparsing string and array in PHP. You can parses the string into variables by using the parse_str PHP function. Using parse_str function void parse_str ( string $str [, array &$arr ] ) $str = The input string. $arr = If the second parameter arr is present, variables … Read more