如何通过PHP调用院线票房API获取实时票房数据?
- 内容介绍
- 文章标签
- 相关推荐
本文共计495个文字,预计阅读时间需要2分钟。
代码描述:PHP示例代码,调用在线票务API接口
接口地址:http://www.juhe.cn/docs/api/id/44
php
// 接口地址$url=http://v.juhe.cn/ticket/query;
// 接口参数$params=array( key=> 你的API密钥, // 你的API密钥 city=> 城市名称, // 城市名称 date=> 日期, // 日期 type=> 类型, // 类型 page=> 页码, // 页码 pagesize=> 每页数量 // 每页数量);
// 生成签名$sign=md5($params['key'] . $params['city'] . $params['date'] . $params['type'] . $params['page'] . $params['pagesize']);
// 拼接请求参数$queryStr=http_build_query($params);$queryStr .=&sign= . $sign;
// 发送请求$response=file_get_contents($url . '?' . $queryStr);
// 解析返回结果$result=json_decode($response, true);
// 输出结果echo json_encode($result);?>
代码描述:php院线票房api调用代码实例接口地址:www.juhe.cn/docs/api/id/44
<!--?php // +---------------------------------------------------------------------- // | JuhePHP [ NO ZUO NO DIE ] // +---------------------------------------------------------------------- // | Copyright (c) 2010-2015 juhe.cn All rights reserved. // +---------------------------------------------------------------------- // | Author: Juhedata <info@juhe.cn--> // +---------------------------------------------------------------------- //---------------------------------- // 电影票房调用示例代码 - 聚合数据 // 在线接口文档:www.juhe.cn/docs/44 //---------------------------------- header('Content-type:text/html;charset=utf-8'); //配置您申请的appkey $appkey = "*********************"; //************1.最新票房榜************ $url = "v.juhe.cn/boxoffice/rank"; $params = array( "area" => "",//票房榜的区域,CN-内地,US-北美,HK-香港 "key" => $appkey,//应用APPKEY(应用详细页查询) "dtype" => "",//返回数据的格式,xml/json,默认json ); $paramstring = v.juhe.cn/boxoffice/wp"; $params = array( "key" => $appkey,//应用APPKEY "dtype" => "",//返回数据的格式,xml或json,默认json ); $paramstring = http_build_query($params); $content = juhecurl($url,$paramstring); $result = json_decode($content,true); if($result){ if($result['error_code']=='0'){ print_r($result); }else{ echo $result['error_code'].":".$result['reason']; } }else{ echo "请求失败"; } //************************************************** /** * 请求接口返回内容 * @param string $url [请求的URL地址] * @param string $params [请求的参数] * @param int $ipost [是否采用POST形式] * @return string */ function juhecurl($url,$params=false,$ispost=0){ $httpInfo = array(); $ch = curl_init(); curl_setopt( $ch, CURLOPT_HTTP_VERSION , CURL_HTTP_VERSION_1_1 ); curl_setopt( $ch, CURLOPT_USERAGENT , 'JuheData' ); curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT , 60 ); curl_setopt( $ch, CURLOPT_TIMEOUT , 60); curl_setopt( $ch, CURLOPT_RETURNTRANSFER , true ); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); if( $ispost ) { curl_setopt( $ch , CURLOPT_POST , true ); curl_setopt( $ch , CURLOPT_POSTFIELDS , $params ); curl_setopt( $ch , CURLOPT_URL , $url ); } else { if($params){ curl_setopt( $ch , CURLOPT_URL , $url.'?'.$params ); }else{ curl_setopt( $ch , CURLOPT_URL , $url); } } $response = curl_exec( $ch ); if ($response === FALSE) { //echo "cURL Error: " . curl_error($ch); return false; } $httpCode = curl_getinfo( $ch , CURLINFO_HTTP_CODE ); $httpInfo = array_merge( $httpInfo , curl_getinfo( $ch ) ); curl_close( $ch ); return $response; }
本文共计495个文字,预计阅读时间需要2分钟。
代码描述:PHP示例代码,调用在线票务API接口
接口地址:http://www.juhe.cn/docs/api/id/44
php
// 接口地址$url=http://v.juhe.cn/ticket/query;
// 接口参数$params=array( key=> 你的API密钥, // 你的API密钥 city=> 城市名称, // 城市名称 date=> 日期, // 日期 type=> 类型, // 类型 page=> 页码, // 页码 pagesize=> 每页数量 // 每页数量);
// 生成签名$sign=md5($params['key'] . $params['city'] . $params['date'] . $params['type'] . $params['page'] . $params['pagesize']);
// 拼接请求参数$queryStr=http_build_query($params);$queryStr .=&sign= . $sign;
// 发送请求$response=file_get_contents($url . '?' . $queryStr);
// 解析返回结果$result=json_decode($response, true);
// 输出结果echo json_encode($result);?>
代码描述:php院线票房api调用代码实例接口地址:www.juhe.cn/docs/api/id/44
<!--?php // +---------------------------------------------------------------------- // | JuhePHP [ NO ZUO NO DIE ] // +---------------------------------------------------------------------- // | Copyright (c) 2010-2015 juhe.cn All rights reserved. // +---------------------------------------------------------------------- // | Author: Juhedata <info@juhe.cn--> // +---------------------------------------------------------------------- //---------------------------------- // 电影票房调用示例代码 - 聚合数据 // 在线接口文档:www.juhe.cn/docs/44 //---------------------------------- header('Content-type:text/html;charset=utf-8'); //配置您申请的appkey $appkey = "*********************"; //************1.最新票房榜************ $url = "v.juhe.cn/boxoffice/rank"; $params = array( "area" => "",//票房榜的区域,CN-内地,US-北美,HK-香港 "key" => $appkey,//应用APPKEY(应用详细页查询) "dtype" => "",//返回数据的格式,xml/json,默认json ); $paramstring = v.juhe.cn/boxoffice/wp"; $params = array( "key" => $appkey,//应用APPKEY "dtype" => "",//返回数据的格式,xml或json,默认json ); $paramstring = http_build_query($params); $content = juhecurl($url,$paramstring); $result = json_decode($content,true); if($result){ if($result['error_code']=='0'){ print_r($result); }else{ echo $result['error_code'].":".$result['reason']; } }else{ echo "请求失败"; } //************************************************** /** * 请求接口返回内容 * @param string $url [请求的URL地址] * @param string $params [请求的参数] * @param int $ipost [是否采用POST形式] * @return string */ function juhecurl($url,$params=false,$ispost=0){ $httpInfo = array(); $ch = curl_init(); curl_setopt( $ch, CURLOPT_HTTP_VERSION , CURL_HTTP_VERSION_1_1 ); curl_setopt( $ch, CURLOPT_USERAGENT , 'JuheData' ); curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT , 60 ); curl_setopt( $ch, CURLOPT_TIMEOUT , 60); curl_setopt( $ch, CURLOPT_RETURNTRANSFER , true ); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); if( $ispost ) { curl_setopt( $ch , CURLOPT_POST , true ); curl_setopt( $ch , CURLOPT_POSTFIELDS , $params ); curl_setopt( $ch , CURLOPT_URL , $url ); } else { if($params){ curl_setopt( $ch , CURLOPT_URL , $url.'?'.$params ); }else{ curl_setopt( $ch , CURLOPT_URL , $url); } } $response = curl_exec( $ch ); if ($response === FALSE) { //echo "cURL Error: " . curl_error($ch); return false; } $httpCode = curl_getinfo( $ch , CURLINFO_HTTP_CODE ); $httpInfo = array_merge( $httpInfo , curl_getinfo( $ch ) ); curl_close( $ch ); return $response; }

