cy1024
注册会员

初级会员
UID 68614
精华
0
积分 68
帖子 45
金钱 68 喜悦币
威望 0
人脉 0
阅读权限 20
注册 2006-2-15 来自 北京
状态 离线
|
[推荐阅读] 求:Session 问题
我知道答案了,如下:
The RAW / uninterpreted HTTP POst information can be accessed with:
$GLOBALS['HTTP_RAW_POST_DATA']
This is useful in cases where the post Content-Type is not something PHP understands (such as text/xml).
也就是说,基本上$GLOBALS['HTTP_RAW_POST_DATA'] 和 $_POST是一样的。但是如果post过来的数据不是PHP能够识别的,你可以用 $GLOBALS['HTTP_RAW_POST_DATA']来接收,比如 text/xml 或者 soap 等等。
PHP默认识别的数据类型是application/x-www.form-urlencoded标准的数据类型。
|  花儿为什么这样 |
|