| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- /*
- * Krpano100 用户管理
- * ============================================================================
- * 技术支持:2015-2099 成都世纪川翔科技有限公司
- * 官网地址: http://www.krpano100.com
- * ----------------------------------------------------------------------------
- * $Author: yuanjiang 932625974#qq.com $
- * $Id: user.php 28028 2016-02-19Z liyuanzhang $
- */
- define('IN_T',true);
- require './include/init.php';
- require './include/function_user.php';
- $UCommon = new UCommon(APPID, APPSECRET);
- //验证签名
- $UCommon->checkSignature();
- //合法的请求方法
- $method = array('ucinsert','ucedit','ucdelete','uclogin','uclogout',);
- $remethod = $_GET['method'];
- if(!in_array($remethod, $method)){
- echo ERROR_METHOD_NO_EXISTS,
- exit;
- }
- $remethod();
- echo ERROR_OTHER;
- exit;
- ?>
|