3v4l.org

run code in 300+ PHP versions simultaneously
<?php //Source: https://bugs.php.net/bug.php?id=66015 class Test { const FIRST = 1; const SECOND = 2; const THIRD = 3; protected static $array = [ self::FIRST => 'first', 'second', 'third' ]; public function __construct() { var_export(self::$array); } } $test = new Test();

preferences:
41.02 ms | 402 KiB | 5 Q