/** * Get ZLog instance * @return ZLog */ public static function &getInstance() { if (self::$m_instance == null) { self::$m_instance = new ZLog(); } return self::$m_instance; }