废弃代码 ,留作纪念 ,有心的人 可以完善下使用
error_Write_Level = $error_Level;
}
//写日志
abstract function writeLog();
public function getERROR_WRITE_LEVEL() {
return $this->error_Write_Level ();
}
abstract function trace();
abstract function info();
abstract function profile();
abstract function warning();
abstract function error();
}
class loginLog extends Baselog {
public function wirteLog() {
}
}
//日志信息抽象类
abstract class Messages {
private $message;
abstract function get_Message();
}
//异常类
class EduErrorException extends Exception {
public function __construct() {
}
}