3v4l.org

run code in 300+ PHP versions simultaneously
<?php trait foo { static $bar = []; public static function a() { static::$bar = ["foo"]; echo "Goodbye Moon"; } } class bing { use foo; static $bar = []; public static function a() { foo::a(); var_dump(static::$bar, foo::$bar); } } bing::a();

preferences:
52.24 ms | 402 KiB | 5 Q