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 ); }

preferences:
36.82 ms | 402 KiB | 5 Q