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.
 
 
 
 
 
 

28 lines
754 B

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Steven
  5. * Date: 2016/8/29
  6. * Time: 16:29
  7. */
  8. class virtifyUsers
  9. {
  10. public function __construct()
  11. {
  12. header("Access-Control-Allow-Origin:*");
  13. header("Content-Type:text/html;charset=utf-8;");
  14. date_default_timezone_set('PRC');
  15. require_once __DIR__.'/../utils/commonUtils.php';
  16. require_once __DIR__."/../../config/Mysql.php";
  17. require_once __DIR__.'/../service/createOrderService.php';
  18. require_once __DIR__.'/dispatch_algorithm.php';
  19. //微信获取用户基本信息接口
  20. // if (!isset($_COOKIE ["open_id"])) {
  21. // header("Location:http://wx.zhizhuchuxing.com/ZZDZ/dzbs_login.php");
  22. // exit ();
  23. // }
  24. }
  25. }