You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- /**
- * Created by PhpStorm.
- * User: Steven
- * Date: 2016/8/29
- * Time: 16:29
- */
-
- class virtifyUsers
- {
- public function __construct()
- {
- header("Access-Control-Allow-Origin:*");
- header("Content-Type:text/html;charset=utf-8;");
- date_default_timezone_set('PRC');
- require_once __DIR__.'/../utils/commonUtils.php';
- require_once __DIR__."/../../config/Mysql.php";
- require_once __DIR__.'/../service/createOrderService.php';
- require_once __DIR__.'/dispatch_algorithm.php';
- //微信获取用户基本信息接口
- // if (!isset($_COOKIE ["open_id"])) {
- // header("Location:http://wx.zhizhuchuxing.com/ZZDZ/dzbs_login.php");
- // exit ();
- // }
-
- }
- }
|