3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a1=['0'=>'my key should be a (numeric) string']; $a2=[0=>'my key should be an int']; $a3= new stdClass; $a3->{"0"} = 'my key should be a (numeric) string'; $a3=(array)$a3; foreach($a1 as $key=>$val){echo $val.': ';var_dump($key);} foreach($a2 as $key=>$val){echo $val.': ';var_dump($key);} foreach($a3 as $key=>$val){echo $val.': ';var_dump($key);} var_dump($a1,$a2,$a3);
Output for git.master, git.master_jit, rfc.property-hooks
my key should be a (numeric) string: int(0) my key should be an int: int(0) my key should be a (numeric) string: int(0) array(1) { [0]=> string(35) "my key should be a (numeric) string" } array(1) { [0]=> string(23) "my key should be an int" } array(1) { [0]=> string(35) "my key should be a (numeric) string" }

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:
64.54 ms | 402 KiB | 8 Q