3v4l.org

run code in 300+ PHP versions simultaneously
<?php class foo { public static function myStaticFunction() { echo "I'm declared static! Calling me statically works great.\n"; } public function myNonStaticFunction() { echo "I'm not static, if you try to call me statically you'll get a deprecated warning\n"; } public function __call($name, $args) { echo 123;exit; } } foo::myStaticFunction(); foo::myNonStaticFunction();
Output for git.master, git.master_jit, rfc.property-hooks
I'm declared static! Calling me statically works great. Fatal error: Uncaught Error: Non-static method foo::myNonStaticFunction() cannot be called statically in /in/60OvC:19 Stack trace: #0 {main} thrown in /in/60OvC on line 19
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:
58.3 ms | 401 KiB | 8 Q