3v4l.org

run code in 300+ PHP versions simultaneously
<?php $ob = new stdClass(); $ob->value = new stdClass(); $array = array('1'); $obi = new stcClass(); $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
Fatal error: Uncaught Error: Class "stcClass" not found in /in/nID9Q:9 Stack trace: #0 {main} thrown in /in/nID9Q on line 9
Process exited with code 255.

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