如何用PHP编写调用苹果序列号查询接口的代码?

2026-04-03 13:541阅读0评论SEO基础
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计471个文字,预计阅读时间需要2分钟。

如何用PHP编写调用苹果序列号查询接口的代码?

代码描述:基于PHP的苹果序列号查询接口调用代码实例关联数据:苹果序列号接口地址:http://www.juhe.cn/docs/api/id/37

php 你的API KEY, // 替换为你的API KEY ip=> 要查询的IP地址);// 发起HTTP请求$paramStr=http_build_query($param);$result=httpGet($url, $paramStr);// 解析返回结果$json=json_decode($result, true);if ($json['error_code']==0) { echo IP地址: . $json['result']['ip'] . \n; echo 归属地: . $json['result']['country'] . $json['result']['province'] . $json['result']['city'] . \n;} else { echo 错误代码: . $json['error_code'] . \n; echo 错误信息: . $json['reason'] . \n;}

// HTTP GET请求函数function httpGet($url, $paramStr){ $oCurl=curl_init(); if (stripos($url, https://) !==false) { curl_setopt($oCurl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($oCurl, CURLOPT_SSL_VERIFYHOST, false); } curl_setopt($oCurl, CURLOPT_URL, $url); curl_setopt($oCurl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($oCurl, CURLOPT_POST, true); curl_setopt($oCurl, CURLOPT_POSTFIELDS, $paramStr); $sContent=curl_exec($oCurl); $aStatus=curl_getinfo($oCurl); curl_close($oCurl); if (intval($aStatus[http_code])==200) { return $sContent; } else { return ; }}?>

代码描述:基于php的苹果序列号查询接口调用代码实例
关联数据:苹果序列号
接口地址:www.juhe.cn/docs/api/id/37

<!--?php // +---------------------------------------------------------------------- // | JuhePHP [ NO ZUO NO DIE ] // +---------------------------------------------------------------------- // | Copyright (c) 2010-2015 juhe.cn All rights reserved. // +---------------------------------------------------------------------- // | Author: Juhedata <info@juhe.cn--> // +---------------------------------------------------------------------- //---------------------------------- // 苹果序列号调用示例代码 - 聚合数据 // 在线接口文档:www.juhe.cn/docs/37 //---------------------------------- header('Content-type:text/html;charset=utf-8'); //配置您申请的appkey $appkey = "*********************"; //************1.苹果序列号/IMEI号查询************ $url = "apis.juhe.cn/appleinfo/index"; $params = array( "sn" => "",//苹果产品的序列号或IMEI号 "dtype" => "",//返回数据格式:json或xml,默认json "key" => $appkey,//你申请的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形式] * @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; }

如何用PHP编写调用苹果序列号查询接口的代码?

本文共计471个文字,预计阅读时间需要2分钟。

如何用PHP编写调用苹果序列号查询接口的代码?

代码描述:基于PHP的苹果序列号查询接口调用代码实例关联数据:苹果序列号接口地址:http://www.juhe.cn/docs/api/id/37

php 你的API KEY, // 替换为你的API KEY ip=> 要查询的IP地址);// 发起HTTP请求$paramStr=http_build_query($param);$result=httpGet($url, $paramStr);// 解析返回结果$json=json_decode($result, true);if ($json['error_code']==0) { echo IP地址: . $json['result']['ip'] . \n; echo 归属地: . $json['result']['country'] . $json['result']['province'] . $json['result']['city'] . \n;} else { echo 错误代码: . $json['error_code'] . \n; echo 错误信息: . $json['reason'] . \n;}

// HTTP GET请求函数function httpGet($url, $paramStr){ $oCurl=curl_init(); if (stripos($url, https://) !==false) { curl_setopt($oCurl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($oCurl, CURLOPT_SSL_VERIFYHOST, false); } curl_setopt($oCurl, CURLOPT_URL, $url); curl_setopt($oCurl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($oCurl, CURLOPT_POST, true); curl_setopt($oCurl, CURLOPT_POSTFIELDS, $paramStr); $sContent=curl_exec($oCurl); $aStatus=curl_getinfo($oCurl); curl_close($oCurl); if (intval($aStatus[http_code])==200) { return $sContent; } else { return ; }}?>

代码描述:基于php的苹果序列号查询接口调用代码实例
关联数据:苹果序列号
接口地址:www.juhe.cn/docs/api/id/37

<!--?php // +---------------------------------------------------------------------- // | JuhePHP [ NO ZUO NO DIE ] // +---------------------------------------------------------------------- // | Copyright (c) 2010-2015 juhe.cn All rights reserved. // +---------------------------------------------------------------------- // | Author: Juhedata <info@juhe.cn--> // +---------------------------------------------------------------------- //---------------------------------- // 苹果序列号调用示例代码 - 聚合数据 // 在线接口文档:www.juhe.cn/docs/37 //---------------------------------- header('Content-type:text/html;charset=utf-8'); //配置您申请的appkey $appkey = "*********************"; //************1.苹果序列号/IMEI号查询************ $url = "apis.juhe.cn/appleinfo/index"; $params = array( "sn" => "",//苹果产品的序列号或IMEI号 "dtype" => "",//返回数据格式:json或xml,默认json "key" => $appkey,//你申请的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形式] * @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; }

如何用PHP编写调用苹果序列号查询接口的代码?