微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

代码如下:
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 **/

原文地址:https://www.jb51.cc/php/24800.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐