php实现12306余票查询、价格查询示例

时间:2024-05-02 17:08:11 


<?php
/**
 * 车票接口类
 *
 * @author chepiao100
 *
 */
class chepiao100

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

  /**
   * 返回接口数据
   *
   * @param string $method 接口方法
   * @param array $param 请求参数
   * @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 **/

标签:php,12306
0
投稿

猜你喜欢

  • python批量处理打开多个文件

    2022-10-21 05:26:47
  • oracle 删除重复数据

    2009-07-23 14:46:00
  • Python 使用双重循环打印图形菱形操作

    2021-07-16 14:13:47
  • ASP.NET Core优雅的在开发环境保存机密(User Secrets)

    2023-07-15 20:25:37
  • Python完成哈夫曼树编码过程及原理详解

    2023-10-16 03:09:39
  • ASP中利用OWC控件实现图表功能详解

    2010-05-27 12:26:00
  • python得到qq句柄,并显示在前台的方法

    2021-10-08 12:44:30
  • Python利用cv2动态绘制圆和矩形的示例详解

    2022-08-20 08:23:15
  • Django+JS 实现点击头像即可更改头像的方法示例

    2021-09-01 19:16:44
  • pytorch 一行代码查看网络参数总量的实现

    2023-04-23 17:42:36
  • 原生JS实现几个常用DOM操作API实例

    2024-04-25 13:09:27
  • 对Python生成汉字字库文字,以及转换为文字图片的实例详解

    2021-12-10 16:55:51
  • 一文搞懂JSON(JavaScript Object Notation)

    2024-04-10 10:58:22
  • python requests.get带header

    2022-07-28 20:50:40
  • 两行 JavaScript 代码

    2010-08-31 14:57:00
  • Python通用循环的构造方法实例分析

    2022-03-30 00:03:56
  • Python的类成员变量默认初始值的坑及解决

    2023-12-02 18:46:47
  • 利用OBJECT_DEFINITION函数来代码存档

    2009-01-20 15:34:00
  • Linux下安装Memcached服务器和客户端与PHP使用示例

    2023-10-05 04:32:44
  • Python自动录入ERP系统数据

    2022-03-09 06:05:41
  • asp之家 网络编程 m.aspxhome.com