PHP API接口接受post数据。。file_get_contents 把整个文件一次性读入一个字符串中。
Posted 遇事稳坐钓鱼台
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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); } }
以上是关于PHP API接口接受post数据。。file_get_contents 把整个文件一次性读入一个字符串中。的主要内容,如果未能解决你的问题,请参考以下文章
jquery中ajax方法load get post与脚本文件如php脚本连接时,脚本怎样接受数据?
PHP content-type为"application/json"的post过来的数据$_POST接受不到的问题