--TEST-- Bug #66015 (wrong array indexing in class's static property) --FILE-- 'first', 'second', 'third', 4, ]; public function __construct() { var_export(self::$array); } } $test = new Test(); ?> ===DONE=== --EXPECTF-- array ( 1 => 'first', 2 => 'second', 3 => 'third', 4 => 4, ) ===DONE===