国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > PHP > 正文

php實(shí)現(xiàn)12306余票查詢、價(jià)格查詢示例

2024-05-04 23:22:54
字體:
供稿:網(wǎng)友

復(fù)制代碼 代碼如下:


<?php
/**
 * 車票接口類
 *
 * @author chepiao100
 *
 */
class chepiao100

 /**
  * 接口地址
  * @var string
  */
 private $_apiurl = 'http://www.chepiao100.com/api/';

  /**
   * 返回接口數(shù)據(jù)
   *
   * @param string $method 接口方法
   * @param array $param 請求參數(shù)
   * @return mixed
  */
  function getData($method, $param)
  {
    $post = http_build_query($param);
    $html = $this->fetch_html($this->_apiurl.$method, $post);
    $jsonArr = json_decode($html, TRUE);
    if ( $jsonArr['errMsg'] == 'Y') {
      return $jsonArr['data'];
    } else {
      return $jsonArr['errMsg'];
    }
  }

  /**
   * 請求HTTP
   *
   * @param string $url
   * @param string $post
   * @return mixed
   */
  function fetch_html($url, $post)
  {
   $ch = curl_init($url);
   curl_setopt($ch, CURLOPT_TIMEOUT, 60);
   curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
   curl_setopt($ch, CURLOPT_POST, true);
   //curl_setopt($ch, CURLOPT_PROXY, 'http://10.100.10.100:3128');
   curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
   $html = curl_exec($ch);
   curl_close($ch);
   return $html;
  }
}
/** End class of chepiao100 **/

發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 嘉善县| 承德县| 鸡东县| 铁岭县| 丹巴县| 元朗区| 沙洋县| 芦溪县| 长寿区| 雅安市| 班戈县| 宝兴县| 乌拉特中旗| 邯郸县| 犍为县| 沂源县| 土默特左旗| 阿拉尔市| 伊宁市| 偃师市| 永寿县| 衢州市| 仁怀市| 江口县| 定安县| 阿克苏市| 准格尔旗| 武夷山市| 东源县| 三门峡市| 焦作市| 寿光市| 海安县| 泾阳县| 闻喜县| 德兴市| 巫山县| 芦山县| 云和县| 突泉县| 广安市|