3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Test { public $a = 'a'; protected $b = 'b'; private $c = 'c'; } function objectToArray ($object) { $array = (array) $object; return array_combine( array_map( function($k) { return str_replace("\0", "", $k); }, array_keys($array) ), array_values($array) ); } $array = objectToArray( new \Test()); var_export((array) new \Test());
Output for git.master, git.master_jit, rfc.property-hooks
array ( 'a' => 'a', '' . "\0" . '*' . "\0" . 'b' => 'b', '' . "\0" . 'Test' . "\0" . 'c' => 'c', )

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