"; } else { self::$log_msg.= print_r($msg,true)."\r\n"; } } else if(is_string($msg) && $msg!==''){ if (self::$log_format=='html') { self::$log_msg.=$msg."
"; } else { self::$log_msg.=$msg."\r\n"; } } if(self::$log_now) { self::print_log(); self::$log_msg=''; } } public static function print_log() { if(!self::$log_msg) return; if (self::$log_file) { file_put_contents(self::$log_file,self::$log_msg,FILE_APPEND); } else { print self::$log_msg; } } public static function reset() { if (self::$log_file) { @unlink(self::$log_file); } } }