Home > php教程 > php手册 > 四、中英翻译、歌词、藏头诗、智能聊天

四、中英翻译、歌词、藏头诗、智能聊天

WBOY
Release: 2016-06-07 11:42:47
Original
1253 people have browsed it

中英翻译、歌词、藏头诗、智能聊天
此章接口都来源于:http://api.ajaxsns.com/ ,感谢作者的无私奉献。

先看效果图
四、中英翻译、歌词、藏头诗、智能聊天
四、中英翻译、歌词、藏头诗、智能聊天
四、中英翻译、歌词、藏头诗、智能聊天

代码如下:

1、共同方法private function _ajaxsns_comm($msg){<br>     $param=array(<br>         "key"   => "free",<br>         "appid" =>   "0",<br>         "msg"   =>   "$msg"<br>     );<br>       <br>     $datas=http("http://api.ajaxsns.com/api.php",$param);<br>     $json=json_decode($datas);<br>     if($json->result==0){<br>         $content=str_replace("{br}","\n",$json->content);<br>     }else{<br>         $content="从前有座山,山上有座庙,庙里有个小和尚,-^-,连接出错,请稍后再试,^_^.";<br>     }<br>     $content.="\n\n小助手:回复 @ 进入主界面";<br>   <br>     return array($content,"text");<br> }2、其他实现//中英互译<br>     private function get_translate($find_name){<br>         return $this->_ajaxsns_comm("翻译".$find_name);<br>     }<br>   <br>     //歌词<br>     private function get_lyric($find_name){<br>         return $this->_ajaxsns_comm("歌词".$find_name);<br>     }<br>     //藏头诗<br>     private function get_poem($find_name){<br>         return $this->_ajaxsns_comm("藏头诗".$find_name);<br>     }<br>   <br>     //智能多天<br>     private function get_chat($find_name){<br>         return $this->_ajaxsns_comm($find_name);<br>     }四、中英翻译、歌词、藏头诗、智能聊天

来源:http://www.xiuxiandou.com

AD:真正免费,域名+虚机+企业邮箱=0元

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template