|
- <?php
- /*
- * wechat 2.0
- * Copyright (c) 2016 yixi wei http://zhizhuchuxing.com/
- * Date: 2016.09.06
- * Something is to pay QQ1062140302
- */
-
- header("Access-Control-Allow-Origin:*");
- //载入配置文件和连接数据库
- date_default_timezone_set('PRC');
- require_once '/usr/share/nginx/ZZFX/wchat_fx/zz-fx/Common/Mysql.php';
- $pdo=conn();
- $arr = range(1,2);
- $disney_ticket_info=array();
- foreach ($arr as $k=>$v) {
- $date = date('Y-m-d', time()+60*60*24*$k);
- $disney_ticket_info[$date] = get_disney_all_info($date);
- }
- print_r($disney_ticket_info);
-
- //set_memcache('disney_ticket_info',$disney_ticket_info);
-
|