zoukankan      html  css  js  c++  java
  • 微擎 人人商城 merchant.php源码

    <?php
     
    define('IN_SYS', true);
    require '../framework/bootstrap.inc.php';
    load()->web('common');
    load()->web('template');
    header('Content-Type: text/html; charset=UTF-8');
    $uniacid = intval($_GPC['i']);
    $cookie = $_GPC['__uniacid'];
     
    if (empty($uniacid) && empty($cookie)) {
            exit('Access Denied.');
    }
     
     
    session_start();
     
    if (!empty($uniacid)) {
            $_SESSION['__merch_uniacid'] = $uniacid;
            isetcookie('__uniacid', $uniacid, 7 * 86400);
    }
     
     
    $site = WeUtility::createModuleSite('ewei_shopv2');
     
    if (!is_error($site)) {
            $method = 'doWebWeb';
            $site->uniacid = $uniacid;
            $site->inMobile = false;
     
            if (method_exists($site, $method)) {
                    $site->$method();
                    exit();
            }
     
    }
     
     
    ?>
  • 相关阅读:
    2、变量
    1、基本的数据类型
    jenkins入门
    我的Python基础笔记
    jmeter测试手机app
    Python:字典
    Python:元组
    Python:列表
    Python:函数
    H3C-L2TP
  • 原文地址:https://www.cnblogs.com/westsoft/p/9912539.html
Copyright © 2011-2022 走看看