노력 PHP하지 :배열 5.6에서 덤프하지만 5.5.9
이var_dump(Map::map);
PHP 5.5.9 이것은 나에게 구문 분석 오류 제공 : 구문 오류, 예기치 않은, 기대 ']'map.php에 '.' 14 행 (아래의 배열 선언에서 첫 번째 연결 마크)
PHP 5.6에서는 경고 또는주의 사항없이 배열을 덤프합니다.
class Map
{
const map = [
'admin' => [
'' => __DIR__ . 'somefile.php'],
'resa' => __DIR__ . 'somefile.php',
'galleri' => __DIR__ . 'somefile.php',
'kategori' => __DIR__ . 'somefile.php',
'' => [
'' => __DIR__ . 'somefile.php',
'katalog' => __DIR__ . 'somefile.php',
'resan' => __DIR__ . 'somefile.php',
'bussresor' => __DIR__ . 'somefile.php',
'kontakt' => __DIR__ . 'somefile.php'],
'ajax' => __DIR__ . 'somefile.php',
'test' => [
'' => __DIR__ . 'somefile.php',
'test1sub' => __DIR__ . 'somefile.php',
'test2' => [
'' => __DIR__ . 'somefile.php',
'test2sub' => __DIR__ . 'somefile.php',
'test3' => [
'' => __DIR__ . 'somefile.php',
'test3sub' => __DIR__ . 'somefile.php'
]
]
]
];
}
http://php.net/manual/en/migration56.new-features.php#migration56.new-features.const-scalar-exprs –