帝国CMS7.2 机器人插件
演示demo 2016-08-14 01:58:39 插件   帝国CMS   

 玩法说明:

1、文字类

输入:hello world


2、链接类

输入:美女的图片


3、新闻类

输入:今天有什么新闻


4、查询类

输入:南京到北京的火车


5、厨艺速成

输入:红烧肉怎么做

 

其他功能请自行测试!

 

userfun.php 添加一个自定义函数:

PHP Code复制内容到剪贴板
  1. function Message($ret=200,$err='',$info='',$data=''){  
  2.     if(!is_numeric($ret))  
  3.     {  
  4.         return '';  
  5.     }  
  6.     $result = array(  
  7.         "ret" => $ret,  
  8.         "msg"=>$err,  
  9.         "info"=> $info,  
  10.         "data" => $data,  
  11.     );  
  12.     toJson($result);  
  13.     exit;  
  14. }  
  15.   
  16. /** 
  17. *@todo      return json 
  18. */  
  19. function toJson($data)  
  20. {  
  21.     echo json_encode($data);  
  22. }  
  23.   
  24.   
  25. /** 
  26. * 替换字符串中所有的回车、空格、和空值 
  27. * @param type string 
  28. * @return type 
  29. */  
  30. function trimall($str)  
  31. {  
  32.     $needToReplaced=array(" "," ","\t","\n","\r");  //需要替换的字符  
  33.     $afterReplace=array("","","","","");  
  34.     $str = str_replace($needToReplaced,$afterReplace,$str);  
  35.     $str = stripslashes($str);  
  36.     return $str;  
  37. }  

 

本文来自于:http://www.yoyo88.cn/demo/31.html

Powered by yoyo苏ICP备15045725号