欢迎来到天天文库
浏览记录
ID:9003622
大小:216.00 KB
页数:6页
时间:2018-04-14
《基于php的新华字典接口调用代码实例》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、基于php的新华字典接口调用代码实例接口描述:基于php的新华字典接口调用代码实例接口平台:聚合数据//+---------------------------------------------------------------------- //----------------------------------//新华字典调用示例代码-聚合数据//在线接口文档:http://
6、www.juhe.cn/docs/156//---------------------------------- header('Content-type:text/html;charset=utf-8'); //配置您申请的appkey$appkey="*********************"; //************1.根据汉字查询字典************$url="http://v.juhe.cn/xhzd/query";$params=array( "word"=>"",//填写需要查询
7、的汉字,UTF8urlencode编码 "key"=>$appkey,//应用APPKEY(应用详细页查询) "dtype"=>"",//返回数据的格式,xml或json,默认json);$paramstring=http_build_query($params);$content=juhecurl($url,$paramstring);$result=json_decode($content,true);if($result){ if($result['error_code']=='0'){
8、 print_r($result); }else{ echo$result['error_code'].":".$result['reason']; }}else{ echo"请求失败";}//************************************************** //************2.汉字部首列表************$url="http://v.juhe.cn/xhzd/bushou";$params=array( "key"=
9、>$appkey,//应用APPKEY(应用详细页查询) "dtype"=>"",//返回数据的格式,xml或json,默认json);$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{
10、 echo$result['error_code'].":".$result['reason']; }}else{ echo"请求失败";}//************************************************** //************3.汉字拼音列表************$url="http://v.juhe.cn/xhzd/pinyin";$params=array( "key"=>$appkey,//应用APPKEY(应用详细页查询)
11、 "dtype"=>"",//返回数据的格式,xml或json,默认json);$paramstring=http_build_query($params);$content=juhecurl($url,$paramstring);$result=json_decode(
此文档下载收益归作者所有