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 __callStatic($name, $args) { echo 123;exit; } } foo::myStaticFunction(); foo::myNonStaticFunction();
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Method foo::__callStatic() must be static in /in/N8mUV on line 12
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:
31.96 ms | 401 KiB | 8 Q