Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

20 lignes
588 B

  1. <?php
  2. //更新bus_cost表
  3. function httpRequest($url,$data=null){
  4. $ch=curl_init();
  5. curl_setopt($ch, CURLOPT_URL, $url);
  6. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  7. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  8. if (!empty($data)){
  9. curl_setopt($ch, CURLOPT_POST, 1);
  10. curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  11. }
  12. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  13. $output=curl_exec($ch);
  14. curl_close($ch);
  15. return $output;
  16. }
  17. require_once __DIR__.'/../domain.php';
  18. httpRequest("http://". CS1_DOMAIN. "/api/timing/update-bus-cost");
  19. ?>