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 User; $u->uid = $id; return $u; } } class User extends derp_User {} class myOwnUser extends User { static function getByID($id) { $u = new myOwnUser; $u->uid = $id; return $u; } } $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 User::$uid is deprecated in /in/qJV3C on line 11 User Object ( [uid] => 1337 ) SHOULD BE Deprecated: Creation of dynamic property myOwnUser::$uid is deprecated in /in/qJV3C on line 20 myOwnUser 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:
44.18 ms | 402 KiB | 8 Q