3v4l.org

run code in 300+ PHP versions simultaneously
<?php $x = array(); $x[] = 'Some Value'; $x[] = 'Another value'; var_dump($x); $x = array(); $x['name'] = 'Anil'; $x['other name'] = 'Del Boy'; var_dump($x); $x = array( 'Name' => 'Batman', 'Status' => 'Busy', 'etc' => 'etc', ); var_dump($x);
Output for git.master_jit, git.master, rfc.property-hooks
array(2) { [0]=> string(10) "Some Value" [1]=> string(13) "Another value" } array(2) { ["name"]=> string(4) "Anil" ["other name"]=> string(7) "Del Boy" } array(3) { ["Name"]=> string(6) "Batman" ["Status"]=> string(4) "Busy" ["etc"]=> string(3) "etc" }

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:
117.58 ms | 406 KiB | 5 Q