首页 星座运势 星座运势示例代码 星座运势查询[PHP]

星座运势查询示例代码[PHP]

作者: 阅读数:2440 上传时间:2016-03-10

星座运势查询

<?php

require_once 'curl.func.php';

$appkey = 'your_appkey_here';//你的appkey
$astroid = 1;
$date='2016-01-19';
$url = "https://api.jisuapi.com/astro/fortune?appkey=$appkey&astroid=$astroid&date=$date";
$result = curlOpen($url, ['ssl'=>true]);
$jsonarr = json_decode($result, true);
//exit(var_dump($jsonarr));
if($jsonarr['status'] != 0)
{
    echo $jsonarr['msg'];
    exit();
}

$result = $jsonarr['result'];
echo $result['astroid'].' '.$result['astroname'].'
'; $today = $result['today']; $tomorrow = $result['tomorrow']; $week = $result['week']; $month = $result['month']; $year = $result['year']; echo '今日运势:
'; echo $today['date'].' '.$today['presummary'].' '.$today['star'].' '.$today['color'].' '.$today['number'].' '.$today['summary'].' '.$today['money'].' '.$today['career'].' '.$today['love'].' '.$today['health'].'
'; echo '明日运势:
'; echo $tomorrow['date'].' '.$tomorrow['presummary'].' '.$tomorrow['star'].' '.$tomorrow['color'].' '.$tomorrow['number'].' '.$tomorrow['summary'].' '.$tomorrow['money'].' '.$tomorrow['career'].' '.$tomorrow['love'].' '.$tomorrow['health'].'
'; echo '本周运势:
'; echo $week['date'].' '.$week['job'].' '.$week['money'].' '.$week['career'].' '.$week['love'].' '.$week['health'].'
'; echo '本月运势:
'; echo $month['date'].' '.$month['summary'].' '.$month['money'].' '.$month['career'].' '.$month['love'].' '.$month['health'].'
'; echo '本年运势:
'; echo $year['date'].' '.$year['summary'].' '.$year['money'].' '.$year['career'].' '.$year['love'].'
';