3v4l.org

run code in 300+ PHP versions simultaneously
<?php $ob = new stdClass(); $ob->value = new stdClass(); $array = array('1'); $obi = new stdClass(); $obi->{0} = 1; $ob->value = (object)$array; $ob->val = $obi; print_r($ob); print_r(object_to_array($ob)); function object_to_array( $object ) { if( ! is_array( $object ) && ! is_object( $object )) { return $object; } if( is_object( $object )) { $object = get_object_vars( $object ); } return array_map( 'object_to_array', $object ); }
Output for git.master, git.master_jit, rfc.property-hooks
stdClass Object ( [value] => stdClass Object ( [0] => 1 ) [val] => stdClass Object ( [0] => 1 ) ) Array ( [value] => Array ( [0] => 1 ) [val] => Array ( [0] => 1 ) )

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