コード例 #1
0
ファイル: jigoshop.class.php プロジェクト: rszczypka/jigoshop
	/** get */
	public static function get() {
        if (!isset(self::$_instance)) {
            $c = __CLASS__;
            self::$_instance = new $c;
        }
        return self::$_instance;
    }