3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = array('one', 'two', 'three', new stdClass, array("hello")); foreach($array as $key=>$value) { switch($value) { case 'one': echo 'one'; break; case 'two': echo 'two'; break; case 'three': echo 'three'; break; case is_object($value): echo 'object'; break; case is_array($value): echo 'array'; break; } }
Output for git.master, git.master_jit, rfc.property-hooks
onetwothreeobjectarray

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