3v4l.org

run code in 300+ PHP versions simultaneously
<?php $ob = new stdClass(); $first = array(1); $second = array('1'); $third = new stdClass(); $third->{0} = 1; $fourth = new stdClass(); $fourth->{'0'} = 1; $ob->second = $second; $ob->third = $third; $ob->fourth = $fourth; $ob->first = $first; 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 ( [second] => Array ( [0] => 1 ) [third] => stdClass Object ( [0] => 1 ) [fourth] => stdClass Object ( [0] => 1 ) [first] => Array ( [0] => 1 ) ) Array ( [second] => Array ( [0] => 1 ) [third] => Array ( [0] => 1 ) [fourth] => Array ( [0] => 1 ) [first] => 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:
47.6 ms | 402 KiB | 8 Q