我正在尝试为我的一个网站制作一个调试类,类似于 Java 中的记录器类。
<?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
怎么了?