-3
我得到這個診斷信息從PHP有關代碼如下:PHP代碼生成PHP通知
PHP Notice: Use of undefined constant default_output - assumed 'default_output'
protected static $instance = NULL;
public static function instance() {
NULL === self::$instance and self::$instance = new self;
return self::$instance;
}
這是什麼消息的意思,我如何rejigger代碼殺消息?
你的代碼片段沒有'default_output'集合。因此,請在代碼中查找更深入的內容,或者查看文件和連接到'PHP的行號注意:使用未定義的常量default_output - 假定爲'default_output'。 – JakeGould
搜索'default_output'的代碼。 (還有更多的代碼,對不對?) – Pietu1998
傻了。謝謝。 –