コードの説明: PHP ベースの公共自転車ネットワーク API 呼び出しコード例 インターフェースアドレス: http://www.juhe.cn/docs/api/id/41
- // +--------------- - ------------------------------------------------- - -------
-
- //-------------------------------------
- // リアルタイム公共自転車呼び出しサンプル コード - 集約データ
- // オンライン インターフェイス ドキュメント: http://www.juhe.cn/docs/41
- //-------- ---------------
-
- header('Content-type:text/html;charset=utf-8');
-
-
- //申請した appkey を設定します
- $appkey = "**********************";
-
-
-
-
- //************1.蘇州** ** ********
- $url = "http://web.juhe.cn:8080/bike/state/sz";
- $params = array(
- "state" => "", // サイト名、例: "タイムズ スクエア"
- "key" => $appkey,// APP Key
- );
- $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 "リクエストが失敗しました";
- }
- //*********** **************************************
-
-
-
-
- //**** *** *****2.常熟************
- $url = "http://web.juhe.cn:8080/bike/state/cs";
- $params = array(
- "state" => "",//サイト名、例: "玉山公園入口北"
- "key" => $appkey,// APP Key
- );
- $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 "リクエストが失敗しました";
- }
- / /********************************************* ******** *
-
-
-
-
- //************3.昆山************
- $url = "http: //web.juhe.cn: 8080/bike/state/ks";
- $params = array(
- "state" => "",//サイト名、例: "スポーツ センター (北)"
- " key" => $appkey,/ / APP Key
- );
- $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 "リクエストが失敗しました";
- }
- //************************* ********* ****************
-
-
-
-
- //************4.呉江*** *********
- $url = "http://web.juhe.cn:8080/bike/state/wj";
- $params = array(
- "state" => "",/ /サイト名、例: 「実験小学校北門」
- "key" => $appkey,// APP Key
- );
- $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 "リクエストが失敗しました";
- }
- //******** *********** *******************************
-
-
-
- //** **********5 .南通************
- $url = "http://web.juhe.cn:8080/bike/state/nt";
- $params = array(
- "state" => ; "",//サイト名、例: "Ctrip North Tower"
- "key" => $appkey,// APP Key
- );
- $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 "リクエストが失敗しました";
- }
- //**************************************************
-
-
-
-
- //************6.宜興************
- $url = "http://web.juhe.cn:8080/bike /state/yx";
- $params = array(
- "state" => "",//サイト名、例: "龍北山森林公園"
- "key" => $appkey,// APP キー
- );
- $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 "リクエストが失敗しました";
- }
- //************************************ **************
-
-
-
-
- //*************7.徐州************
- $url = "http://web.juhe.cn:8080/bike/state/xz";
- $params = array(
- "state" => "",//サイト名、例: "Micro Park "
- "key " => $appkey,// APP Key
- );
- $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 "リクエストが失敗しました";
- }
- //********************** **** ************************
-
-
-
-
- //************8.鎮江**** ********
- $url = "http://web.juhe.cn:8080/bike/state/zj";
- $params = array(
- "state" => " ",// サイト名、例: "礁山公園"
- "key" => $appkey,// APP Key
- );
- $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フォームを使用するかどうか]
- * @文字列を返す
- */
- 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 $応答;
- }
-
复制代
|