所属分类:php教程
php查询星座运势的方法:1、开通星座运势API接口;2、创建PHP示例文件;3、请求接口URL;4、配置申请的appkey;5、发起接口网络请求;6、通过“function juhecurl($url,$params=false,$ispost=0){...}”方式请求接口返回内容,再根据业务实际逻辑调整修改即可。
php入门到就业线上直播课:进入学习
Apipost = Postman + Swagger + Mock + Jmeter 超好用的API调试工具:点击使用
本教程操作环境:windows7系统、PHP8.1版、Dell G3电脑。
php怎么查询星座运势?
1、开通星座运势API接口:
通过https://www.juhe.cn/docs/api/id/58?s=cpphpcn
注册及开通
接口说明:(十二星座的今日运势)
12星座运势解析
解析内容全面,有今日运势解析,明日运势解析及本周运势解析
解析内容新颖,个人运势解析,贵人运势分析,需提防事宜等。
2、基于php的星座运势接口调用示例
代码示例:
// 星座运势调用示例代码
header('Content-type:text/html;charset=utf-8');
//配置您申请的appkey
$appkey = "*********************";
//************1.运势查询************
$url = "http://web.juhe.cn:8080/constellation/getAll";
$params = array(
"key" => $appkey,//应用APPKEY(应用详细页查询)
"consName" => "",//星座名称,如:白羊座
"type" => "",//运势类型:today,tomorrow,week,nextweek,month,year
);
$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视频教程》
以上就是php怎么查询星座运势的详细内容,更多请关注zzsucai.com其它相关文章!