3v4l.org

run code in 300+ PHP versions simultaneously
<?php class derp_User { /** * DEPRECATED */ static function getByUserID($id) { return self::getByID($id); } static function getByID($id) { $u = new self; $u->uid = $id; return $u; } } class User extends derp_User {} class myOwnUser extends User {} $u = myOwnUser::getByUserID(1337); print_r($u); echo "\nSHOULD BE"; print_r(myOWnUser::getByID(1337));
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Creation of dynamic property derp_User::$uid is deprecated in /in/oS8cm on line 11 derp_User Object ( [uid] => 1337 ) SHOULD BE Deprecated: Creation of dynamic property derp_User::$uid is deprecated in /in/oS8cm on line 11 derp_User Object ( [uid] => 1337 )

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