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/17
- * Time: 14:40
- * 每天凌晨更新昨天的ticket信息为不可售
- */
- require_once '../Common/Mysql.php';
- require_once '../Common/zizai_orderAPI.php';
- error_reporting(0);
- $sql = "UPDATE outside_run SET cancel_flag=1 WHERE cancel_flag=0 AND start_date<CURDATE()";
-
- $pdo2 = conn();
- if (is_object($pdo2)) {
- $result = $pdo2->exec($sql);
- }
|