php怎麼查詢星座運勢

2022-10-24 18:00:20

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怎麼查詢星座運勢的詳細內容,更多請關注TW511.COM其它相關文章!