Java のロガー クラスに似た、Web サイトの 1 つのデバッグ クラスを作成しようとしています。
<?php
abstract class DebugLevel
{
const Notice = 1;
const Info = 2;
const Warning = 4;
const Fatal = 8;
}
class Debug
{
private static $level = DebugLevel::Fatal | DebugLevel::Warning | DebugLevel::Info | DebugLevel::Notice;
}
?>
私は得るParse error
:
Parse error: syntax error, unexpected '|', expecting ',' or ';' in (script path) on line 13
どうしたの?