/** * 实例化HPOD对象 * @return HPdo */ public static function instance() { if (self::$_model === null) { self::$_model = new HPdo(); } return self::$_model; }