主要就是这个函数:file_get_contents 把整个文件一次性读入一个字符串中。
//言通智能客服API接口 public function yantong_ai(){ if(IS_POST){ $val[‘text‘] = file_get_contents($_POST);//API json数据 $val[‘ctime‘] = time();//时间戳 $add = M(‘ai_jilu‘)->add($val);//写入数据 if($add){ $state[‘status‘] = 1; $this->ajaxReturn($state); }else{ $state[‘status‘] = 0; $this->ajaxReturn($state); } }else{ $state[‘status‘] = 0; $state[‘info‘] = ‘无权访问‘; $this->ajaxReturn($state); } }
原文地址:https://www.cnblogs.com/zc290987034/p/12050022.html
时间: 2024-11-09 01:45:29