3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str = "title=ACADEMY&amp;category=&amp;length_comparison=gt&amp;length=50"; parse_str($str); echo $title; // value echo $arr[0]."<br />"; // foo bar echo $arr[1]."<br />"; // baz parse_str($str, $output); echo $output['title']; // value echo $output['arr'][0]."<br />"; // foo bar echo $output['arr'][1]."<br />"; // baz

preferences:
51.73 ms | 402 KiB | 5 Q