|
12345678910111213141516 |
- <?php
- /*
- Author:XM
- Compeny:Spiders Travel
- */
- require_once __DIR__.'/../Common/Mysql.php';
- $pdo=conn();
- if(is_object($pdo)){
- $sql="CALL HT_CHECK_ORDER_PREPAID_TIME(1)";
- $result=$pdo->query($sql);
- $rowset=$result->fetchAll(PDO::FETCH_ASSOC);
- }
- if (is_array($rowset)){
- writeLog("check_order_prepaid_time.php HT_CHECK_ORDER_PREPAID_TIME(1)::".json_encode($rowset));
- }
- exit;
|