PHP API接口接受post数据。。file_get_contents 把整个文件一次性读入一个字符串中。

 

主要就是这个函数: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);
        }
    }

 

posted @ 2019-12-16 17:02  遇事稳坐钓鱼台  阅读(653)  评论(0编辑  收藏  举报