3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace hippos; trait test { public static function getClassName() { return 'hi hippo'; } } namespace lions; trait test { public static function getClassName() { return 'hi giraffe'; } } namespace girrafe; use lions\test; use hippos\test as hipposTest; class lemons { use hipposTest, test { test::getClassName insteadof hipposTest; } public function sup() { var_dump(method_exists('lemons', 'getClassName')); var_dump(method_exists(get_class(), 'getClassName')); var_dump(method_exists(get_class(), 'myGetClassName')); echo $this->getClassName(); echo $this->myGetClassName(); } } (new \girrafe\lemons)->sup();
Output for 8.3.0 - 8.3.6
bool(false) Deprecated: Calling get_class() without arguments is deprecated in /in/Lmv0u on line 30 bool(true) Deprecated: Calling get_class() without arguments is deprecated in /in/Lmv0u on line 31 bool(false) hi giraffe Fatal error: Uncaught Error: Call to undefined method girrafe\lemons::myGetClassName() in /in/Lmv0u:33 Stack trace: #0 /in/Lmv0u(37): girrafe\lemons->sup() #1 {main} thrown in /in/Lmv0u on line 33
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.6 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18
bool(false) bool(true) bool(false) hi giraffe Fatal error: Uncaught Error: Call to undefined method girrafe\lemons::myGetClassName() in /in/Lmv0u:33 Stack trace: #0 /in/Lmv0u(37): girrafe\lemons->sup() #1 {main} thrown in /in/Lmv0u on line 33
Process exited with code 255.
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.21
bool(false) bool(true) bool(false) hi giraffe Fatal error: Call to undefined method girrafe\lemons::myGetClassName() in /in/Lmv0u on line 33
Process exited with code 255.

preferences:
153.42 ms | 402 KiB | 180 Q