3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = array('foo','bar','key'=> array('piff','puff','paff')); var_dump('TEST 1'); ///foreach($array as $key) {var_dump($key);} var_dump('TEST 2'); foreach($array[0] as $key) {var_dump($key);} var_dump('TEST 3'); foreach($array['key'] as $key) {var_dump($key);}
Output for git.master, git.master_jit, rfc.property-hooks
string(6) "TEST 1" string(6) "TEST 2" Warning: foreach() argument must be of type array|object, string given in /in/eCmW8 on line 8 string(6) "TEST 3" string(4) "piff" string(4) "puff" string(4) "paff"

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:
48.98 ms | 401 KiB | 8 Q