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
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught ArgumentCountError: parse_str() expects exactly 2 arguments, 1 given in /in/kKoY2:4 Stack trace: #0 /in/kKoY2(4): parse_str('title=ACADEMY&a...') #1 {main} thrown in /in/kKoY2 on line 4
Process exited with code 255.
Output for 7.4.0 - 7.4.25, 7.4.27 - 7.4.33
Deprecated: parse_str(): Calling parse_str() without the result argument is deprecated in /in/kKoY2 on line 4 ACADEMY Notice: Undefined variable: arr in /in/kKoY2 on line 6 Notice: Trying to access array offset on value of type null in /in/kKoY2 on line 6 <br /> Notice: Undefined variable: arr in /in/kKoY2 on line 7 Notice: Trying to access array offset on value of type null in /in/kKoY2 on line 7 <br />ACADEMY Notice: Undefined index: arr in /in/kKoY2 on line 11 Notice: Trying to access array offset on value of type null in /in/kKoY2 on line 11 <br /> Notice: Undefined index: arr in /in/kKoY2 on line 12 Notice: Trying to access array offset on value of type null in /in/kKoY2 on line 12 <br />
Output for 5.4.45, 7.3.32 - 7.3.33, 7.4.26
ACADEMY<br /><br />ACADEMY<br /><br />
Output for 7.2.6 - 7.2.33, 7.3.12 - 7.3.31
Deprecated: parse_str(): Calling parse_str() without the result argument is deprecated in /in/kKoY2 on line 4 ACADEMY Notice: Undefined variable: arr in /in/kKoY2 on line 6 <br /> Notice: Undefined variable: arr in /in/kKoY2 on line 7 <br />ACADEMY Notice: Undefined index: arr in /in/kKoY2 on line 11 <br /> Notice: Undefined index: arr in /in/kKoY2 on line 12 <br />
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.44, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20
ACADEMY Notice: Undefined variable: arr in /in/kKoY2 on line 6 <br /> Notice: Undefined variable: arr in /in/kKoY2 on line 7 <br />ACADEMY Notice: Undefined index: arr in /in/kKoY2 on line 11 <br /> Notice: Undefined index: arr in /in/kKoY2 on line 12 <br />
Output for 5.0.4, 5.1.5 - 5.1.6, 5.2.0 - 5.2.17
ACADEMY Notice: Undefined variable: arr in /in/kKoY2 on line 6 <br /> Notice: Undefined variable: arr in /in/kKoY2 on line 7 <br />ACADEMY Notice: Undefined index: arr in /in/kKoY2 on line 11 <br /> Notice: Undefined index: arr in /in/kKoY2 on line 12 <br />
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.3
ACADEMY Notice: Undefined variable: arr in /in/kKoY2 on line 6 <br /> Notice: Undefined variable: arr in /in/kKoY2 on line 7 <br />ACADEMY Notice: Undefined index: arr in /in/kKoY2 on line 11 <br /> Notice: Undefined index: arr in /in/kKoY2 on line 12 <br />

preferences:
221.55 ms | 402 KiB | 300 Q