3v4l.org

run code in 300+ PHP versions simultaneously
<?php defined('PHP_EOL') or define('PHP_EOL', '\n'); class A { public static function test(){ echo '__CLASS__ = ' . __CLASS__ . PHP_EOL; echo 'get_class = ' . get_class() . PHP_EOL; // echo '__CLASS__ = ' . __CLASS__ . PHP_EOL; } } class B extends A { } echo 'A' . PHP_EOL; A::test(); echo 'B' . PHP_EOL; B::test();
Output for git.master, git.master_jit, rfc.property-hooks
A __CLASS__ = A get_class = A B __CLASS__ = A get_class = A

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