コードの説明: PHP ベースの水質クエリ API 呼び出しコード例 関連データ: 水質 インターフェイス アドレス: http://www.juhe.cn/docs/api/id/34
- // +--------------- - ------------------------------------------------- - -------
-
- //-------------------------------------
- // 水質サンプル コードの呼び出し - 集約データ
- // オンライン インターフェイス ドキュメント: http://www.juhe.cn/docs/34
- //--------------------- ----- ---------------
-
- header('Content-type:text/html;charset=utf-8');
-
-
- //appkey を設定します適用されました
- $appkey = " **********************";
-
-
-
-
- //************1. 河川流域の水質のクエリ************
- $url = "http://web.juhe.cn:8080/environment/water /river ";
- $params = array(
- "river" => "",//流域名、クエリ流域が「長江流域」の場合は、「長江流域」と入力します
- "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/environment/water/state";
- $params = array(
- "state" => "",//監視サイト名、クエリサイト 「Nanjinguan, Yichang, Hubei」の場合は、「Nanjinguan, Yichang, Hubei」と入力します
- "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/environment/water/ stateList";
- $params = array(
- "key" => $appkey,//アプリケーション APPKEY
- );
- $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 "リクエストが失敗しました";
- }
- / /************************************************* *
-
-
-
-
-
- /**
- * リクエストインターフェイス return Content
- * @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);
- の場合( $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;
- }
コードをコピー
|