3v4l.org

run code in 300+ PHP versions simultaneously
<?php 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:
43.49 ms | 402 KiB | 5 Q