如果访问原始POST数据不是php能够识别的文档类型,比如:text/xml 或者soap等等,可以用$GLOBLES[‘HTTP_RAW_POST_DATA’]来接收,$HTTP_RAW_POST_DATA变量包含有原始POST数据 。此变量仅在碰到未识别的MIME数据时产生 。
注:$HTTP_RAW_POST_DATA对于enctype=”multipart/form-data”表单数据不可用,也就是说使用$HTTP_RAW_POST_DATA无法接受网页表单post过来的数据 。
3、file_get_contents(“php://input”);
如果访问原始POST数据 , 更好的方法是使用file_get_content(“php://input”);对于未指定Content-Type的POST数据 , 可以使用该方法读取POST原始数据,包括二进制流也可以和$HTTP_RAW_POST_DATA比起来 。它带来的生存眼里更小,并且不需要任何特殊的php.ini设置 。
注:php://input不能用于 enctype=”multipart/form-data”
例如:$postStr = file_get_contents("php://input"); //获取POST数据
post()等函数用法'>ThinkPHP中I(),U(),$this->post()等函数用法本文实例讲述了ThinkPHP中I(),U(),$this-post()等函数的用法 。分享给大家供大家参考 。具体方法如下:
在ThinkPHP中在控制器中接受表单的数据可以使用如下方法:
1、$_POST[]/$_GET[],但是这个接受的表单内容不会通过htmlspecialchars();函数进行过滤 。如果想使用这个接收数据 , 需要手动处理表单数据
2、可以用接收表单函数复制代码
代码如下:$this-_post();$this-_get();,这个函数默认就会使用htmlspecialchars()进行过滤,不用手动过滤 。
3、在thinkphp3.1.3中有一个新的函数I();直接接收表单数据,并默认为htmlspecailchars();过滤这个函数有这些字段
I('需要接收的表单名','如果数据为空默认值','使用的函数处理表单数据');
U();函数是输出地址
U('操作名','array()参数','伪静态后缀名',是否跳转,域名)
希望本文所述对大家的ThinkPHP框架程序设计有所帮助 。
PHP怎么接收数据三中接受方式:
$_GET//get过来的数据
$_POST//post过来的数据
file_get_contents("php://input")//接口过来的xml等字符串数据用这个接
这三个方法足以接受任何数据了,具体你还要百度一下用法
PHP怎么获取表单提交的数据?。?/h2>一、用file_get_contents以get方式获取内容,需要输入内容为:
1、?php
2、$url='';
3、$html=file_get_contents($url);
4、echo$html;
5、?
二、用file_get_contents函数,以post方式获取url,需要输入内容为
1、?php
2、$url='';
3、$data=https://www.04ip.com/post/array('foo'='bar');
4、$data=https://www.04ip.com/post/http_build_query($data);
5、$opts=array(
6、'http'=array(
7、 'method'='POST',
8、 'header'="Content-type:application/x-www-form-urlencoded\r\n".
9、"Content-Length:".strlen($data)."\r\n",
10、 'content'=$data
11、)
12、);
13、$ctx=stream_context_create($opts);
14、$html=@file_get_contents($url,'',$ctx);
15、?
三、用fopen打开url,以get方式获取内容,需要输入内容为
1、?php
2、$fp=fopen($url,'r');
3、$header=stream_get_meta_data($fp);//获取信息
4、while(!feof($fp)){
5、$result.=fgets($fp,1024);
6、}
7、echo"urlheader:{$header}br":
8、echo"urlbody:$result";
9、fclose($fp);
10、?
四、用fopen打开url,以post方式获取内容,需要输入内容为
1、?php
2、$data=https://www.04ip.com/post/array('foo2'='bar2','foo3'='bar3');
3、$data=https://www.04ip.com/post/http_build_query($data);
4、$opts=array(
5、'http'=array(
6、'method'='POST',
7、'header'="Content-type:application/x-www-form-urlencoded\r\nCookie:cook1=c3;cook2=c4\r\n".
8、"Content-Length:".strlen($data)."\r\n",
推荐阅读
- 安卓机怎么安装鸿蒙系统,安卓机刷鸿蒙系统吗安全吗
- 棋牌游戏称的简单介绍
- 新手直播要什么工具好用,新手直播需要的简单设备
- php数据上链 php连接数据表
- 手机共享数据怎么连接呢,共享数据网络怎么连接
- linux中中止当前命令,linux中止进程
- 神马影院php数据源 神马php开源
- 手机怎么弄成蓝色背景图,手机怎么变蓝色
- 手机应用怎么导入虚拟机,怎么把应用导入虚拟大师