欢迎来到天天文库
浏览记录
ID:20659070
大小:27.50 KB
页数:3页
时间:2018-10-14
《微信开发有道翻译接口代码》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、微市场微信导航今天给大家分享一个微信开发有道翻译接口的程序valid();$wechatObj->responseMsg();classwechatCallbackapiTest{publicfunctionvalid(){$echoStr=$_GET["echostr"];//validsignature,optio
2、nif($this->checkSignature()){echo$echoStr;exit;}}publicfunctionresponseMsg(){//getpostdata,Maybeduetothedifferentenvironments$postStr=$GLOBALS["HTTP_RAW_POST_DATA"];//extractpostdataif(!empty($postStr)){$postObj=simplexml_load_string($postStr,'SimpleXMLElement',LIBXML_NOCDATA
3、);$fromUsername=$postObj->FromUserName;$toUsername=$postObj->ToUserName;$keyword=trim($postObj->Content);$time=time();$textTpl="%s<
4、Content>0";if(!empty($keyword)){$msgType="text";$contentStr=language($keyword);$resultStr=sprintf($textTpl,$fromUsername,$toUsername,$time,$msgType,$contentStr);echo$resultStr;}else{echo"Inputsomething...";}}else{echo"";exit;
5、}}privatefunctioncheckSignature(){$signature=$_GET["signature"];$timestamp=$_GET["timestamp"];$nonce=$_GET["nonce"];$token=TOKEN;$tmpArr=array($token,$timestamp,$nonce);sort($tmpArr);$tmpStr=implode($tmpArr);$tmpStr=sha1($tmpStr);if($tmpStr==$signature){returntrue;}else{retur
6、nfalse;}}}?>fetch($qurl);$sina=json_decode($content,true);$errorcode=$sina['errorC
7、ode'];$phonetic=$sina['basic']['phonetic'];$explains=$sina['basic']['explains']['0'];$interpret=$sina['basic']['explains']['1'];$interprets=$sina['basic']['explains']['2'];$trans='';if(isset($errorcode)){switch($errorcode){case0:$trans=$sina['translation']['0'];break;case20:$
8、trans='要翻译的文本过长';break;case30:$trans='无法进行有效的翻译';break;case40:$trans
此文档下载收益归作者所有