资源描述:
《基于php的万年历接口调用代码实例》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、基于php的万年历接口调用代码实例代码描述:基于php的万年历接口调用代码实例代码平台:聚合数据
2、JuhePHP[NOZUONODIE]//+----------------------------------------------------------------------//
3、Copyright(c)2010-2015http://juhe.cnAllrightsreserved./
4、/+----------------------------------------------------------------------//
5、Author:Juhedata//+---------------------------------------------------------------------- //----------------------------------//万年历调用示例代码-聚合数据//在线接口文档:http://www.juhe.cn/docs/177//----------
6、------------------------ header('Content-type:text/html;charset=utf-8'); //配置您申请的appkey$appkey="*********************"; //************1.获取当天的详细信息************$url="http://japi.juhe.cn/calendar/day";$params=array( "key"=>$appkey,//您申请的appKey "date"=>"",//指定日期,格式为YYY
7、Y-MM-DD,如月份和日期小于10,则取个位,如:2012-1-1);$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['re
8、ason']; }}else{ echo"请求失败";}//************************************************** //************2.获取当月近期假期************$url="http://japi.juhe.cn/calendar/month";$params=array( "key"=>$appkey,//您申请的appKey "year-month"=>"",//指定月份,格式为YYYY-MM,如月份和日期小于10,则取个位,如:2012
9、-1);$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"请求失败"
10、;}//************************************************** //************3.获取当年的假期列表************$url="http://japi.juhe.cn/calendar/year";$params=array( "key"=>$appkey,//您申请的appKey "year"=>"",//指定年份,格式为YYYY,如:2015);$paramstring=http_build_query($params);$content=juhecur
11、l($url,$paramstring);$result=json_decode($content,true