選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

check_order_auto_complete.php 400 B

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