php输入流php://input使用说明(1/2)

在使用xml-rpc的时候,server端获取client数据,主要是通过php输入流input,而不是$_post数组。所以,这里主要探讨php输入流php://input

对一php://input介绍,php官方手册文档有一段话对它进行了很明确地概述。

“php://input allows you to read raw post data. it is a less memory intensive alternative to $http_raw_post_data and does not need any special php.ini directives. php://input is not available with enctype=”multipart/form-data”.

翻译过来,是这样:

“php://input可以读取没有处理过的post数据。相较于$http_raw_post_data而言,它给内存带来的压力较小,并且不需要特殊的php.ini设置。php://input不能用于enctype=multipart/form-data”

我们应该怎么去理解这段概述呢?!我把它划分为三部分,逐步去理解。

读取post数据
不能用于multipart/form-data类型
php://input vs $http_raw_post_data
读取post数据
phper们一定很熟悉$_post这个内置变量。$_post与php://input存在哪些关联与区别呢?另外,客户端向服务端交互数据,最常用的方法除了post之外,还有get。既然php://input作为php输入流,它能读取get数据吗?这二个问题正是我们这节需要探讨的主要内容。
经验告诉我们,从测试与观察中总结,会是一个很凑效的方法。这里,我写了几个脚本来帮助我们测试。

@file 192.168.0.6:/phpinput_server.php 打印出接收到的数据
@file 192.168.0.8:/phpinput_post.php 模拟以post方法提交表单数据
@file 192.168.0.8:/phpinput_xmlrpc.php 模拟以post方法发出xmlrpc请求.
@file 192.168.0.8:/phpinput_get.php 模拟以get方法提交表单表数
phpinput_server.php与phpinput_post.php

代码如下

我们可以通过使用工具ngrep抓取http请求包(因为我们需要探知的是php://input,所以我们这里只抓取http request数据包)。我们来执行测试脚本phpinput_post.php

代码如下

@php /phpinput_post.php
http/1.1 200 ok
date: thu, 08 apr 2010 03:23:36 gmt
server: apache/2.2.3 (centos)
x-powered-by: php/5.1.6
content-length: 160
connection: close
content-type: text/html; charset=utf-8
——-$_post——————
array(2) {
[“n”]=> string(9) “perfgeeks”
[“p”]=> string(4) “7788”
}
——-php://input————-
n=perfgeeks&p=7788

通过ngrep抓到的http请求包如下:

t 192.168.0.8:57846 -> 192.168.0.6:80 [ap]
post /phpinput_server.php http/1.1..
host: 192.168.0.6..content-type: application/x-www-form-urlencoded..co
ntent-length: 18..connection: close….n=perfgeeks&p=7788….
仔细观察,我们不难发现
1,$_post数据,php://input 数据与httpd entity body数据是“一致”的
2,http请求中的content-type是application/x-www-form-urlencoded ,它表示http请求body中的数据是使用http的post方法提交的表单数据,并且进行了urlencode()处理。
(注:注意加粗部分内容,下文不再提示).

1 2

http://www.bkjia.com/phpjc/629599.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/629599.htmltecharticle在使用xml-rpc的时候,server端获取client数据,主要是通过php输入流input,而不是$_post数组。所以,这里主要探讨php输入流php://input 对一php://i…

Posted in 未分类

发表评论