帝国CMS7.2 机器人插件
玩法说明:
1、文字类
输入:hello world
2、链接类
输入:美女的图片
3、新闻类
输入:今天有什么新闻
4、查询类
输入:南京到北京的火车
5、厨艺速成
输入:红烧肉怎么做
其他功能请自行测试!
userfun.php 添加一个自定义函数:
PHP Code复制内容到剪贴板
- function Message($ret=200,$err='',$info='',$data=''){
- if(!is_numeric($ret))
- {
- return '';
- }
- $result = array(
- "ret" => $ret,
- "msg"=>$err,
- "info"=> $info,
- "data" => $data,
- );
- toJson($result);
- exit;
- }
- /**
- *@todo return json
- */
- function toJson($data)
- {
- echo json_encode($data);
- }
- /**
- * 替换字符串中所有的回车、空格、和空值
- * @param type string
- * @return type
- */
- function trimall($str)
- {
- $needToReplaced=array(" "," ","\t","\n","\r"); //需要替换的字符
- $afterReplace=array("","","","","");
- $str = str_replace($needToReplaced,$afterReplace,$str);
- $str = stripslashes($str);
- return $str;
- }