|
코드 예시 | <?php
//请求的接口URL
$apiUrl = 'http://v.juhe.cn/laohuangli/d';
//请求参数
$params = [
//聚合数据上申请的接口调用key
'key' => '聚合数据上申请的接口调用key',
//要查询的日期
'date' => '要查询的日期'
];
//参数数组转换成字符串
$paramsString = http_build_query($params);
//发起接口网络请求
$response = null;
try {
$response = juheHttpRequest($apiUrl, $paramsString, 1);
} catch (Exception $e) {
var_dump($e);
//此处根据自己的需求进行具体的异常处理
}
if (!$response) {
echo '请求异常' . PHP_EOL;
}
//接收接口返回内容
$result = json_decode($response, true);//获取接口返回内容(json字符串),并解析成数组
if (!$result) {
echo '请求异常' . PHP_EOL;
}
$errorCode = $result['error_code'];
if ($errorCode == 0) {
$data = $result['result'];
} else {
echo "请求异常:{$errorCode}_{$result['reason']}" . PHP_EOL;
}
//打印接口返回结果
var_dump($result);
/**
* 发起网络请求函数
* @param String $url 请求的URL
* @param bool $params 请求的参数内容
* @param int $isPost 是否POST请求
* @return bool|string 返回内容
*/
function juheHttpRequest($url, $params = false, $isPost = 0)
{
$httpInfo = [];
$ch = curl_init();
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36');
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 3);
curl_setopt($ch, CURLOPT_TIMEOUT, 12);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 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);
}
}
$reponse = curl_exec($ch);
if ($reponse === 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 $reponse;
}
반환 결과 예시 | array(3) {
["reason"]=>
string(9) "successed"
["result"]=>
array(10) {
["id"]=>
string(4) "3850"
["yangli"]=>
string(10) "2020-11-20"
["yinli"]=>
string(26) "庚子(鼠)年十月初六"
["wuxing"]=>
string(19) "炉中火 定执位"
["chongsha"]=>
string(20) "冲鸡(辛酉)煞西"
["baiji"]=>
string(49) "丁不剃头头必生疮 卯不穿井水泉不香"
["jishen"]=>
string(44) "阴德 民日 三合 时阴 五合 鸣犬对"
["yi"]=>
string(145) "祭祀 祈福 订盟 纳采 裁衣 拆卸 修造 动土 起基 安床 移徙 入宅 安香 入殓 移柩 安葬 谢土 赴任 进人口 会亲友"
["xiongshen"]=>
string(6) "元武"
["ji"]=>
string(13) "作灶 治病"
}
["error_code"]=>
int(0)
}
| 2. 인터페이스: