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.
 
 
 
 

16 lines
376 B

  1. <?php
  2. /*
  3. Author:XM
  4. Compeny:Spiders Travel
  5. */
  6. require_once __DIR__.'/../Common/Mysql.php';
  7. $pdo=conn();
  8. if(is_object($pdo)){
  9. $sql="CALL HT_CHECK_ORDER_PREPAID_TIME(1)";
  10. $result=$pdo->query($sql);
  11. $rowset=$result->fetchAll(PDO::FETCH_ASSOC);
  12. }
  13. if (is_array($rowset)){
  14. writeLog("check_order_prepaid_time.php HT_CHECK_ORDER_PREPAID_TIME(1)::".json_encode($rowset));
  15. }
  16. exit;