3v4l.org

run code in 300+ PHP versions simultaneously
<?php $s = <<<EOF [group] var=123 var2[]= var2[]=a var2[]=b var3[1]=test1;test2 var3[2]=test3,test4,test5|test6 [group2] EOF; var_dump($s); $r = parse_ini_string( $s , true, INI_SCANNER_RAW); var_dump($r);
Output for git.master, git.master_jit, rfc.property-hooks
string(105) "[group] var=123 var2[]= var2[]=a var2[]=b var3[1]=test1;test2 var3[2]=test3,test4,test5|test6 [group2]" array(2) { ["group"]=> array(3) { ["var"]=> string(3) "123" ["var2"]=> array(3) { [0]=> string(0) "" [1]=> string(1) "a" [2]=> string(1) "b" } ["var3"]=> array(2) { [1]=> string(5) "test1" [2]=> string(23) "test3,test4,test5|test6" } } ["group2"]=> array(0) { } }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
42.3 ms | 402 KiB | 8 Q