php获取post中的json数据的实现方法

 2025-01-15  阅读 476  评论 8  点赞 387

摘要:突然想到了以前接触过flash将图片二进制流传给php,灵机一动用$globals['http_raw_post_data']获取到了。于是就深入的查了一下,原来php默认只识别application/x-www.form-urlencoded标准的数据类型,因此,对型如text/xml 或者 soap 或者 application/octet-stream 之类的内
突然想到了以前接触过flash将图片二进制流传给php,灵机一动用$globals['http_raw_post_data']获取到了。
于是就深入的查了一下,原来php默认只识别application/x-www.form-urlencoded标准的数据类型,因此,对型如text/xml 或者 soap 或者 application/octet-stream 之类的内容无法解析,如果用$_post数组来接收就会失败!故保留原型,交给$globals['http_raw_post_data'] 来接收。

php的http_raw_post_data
用content-type=text/xml 类型,提交一个xml文档内容给了php server,要怎么获得这个post数据。
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).
由于php默认只识别application/x-www.form-urlencoded标准的数据类型,因此,对型如text/xml的内容无法解析为$_post数组,故保留原型,交给$globals['http_raw_post_data'] 来接收。
另外还有一项 php://input 也可以实现此这个功能
php://input 允许读取 post 的原始数据。和 $http_raw_post_data 比起来,它给内存带来的压力较小,并且不需要任何特殊的 php.ini 设置。php://input 不能用于 enctype="multipart/form-data"。

应用

a.htm
复制代码 代码如下:

<form action="post.php" method="post">
<input type="text" name="user">
<input type="password" name="password">
<input type="submit">
</form>

post.php
复制代码 代码如下:

<? echo file_get_contents("php://input");?>


标签:phpphp教程

评论列表:

  •   haliluya
     发布于 3天前回复该评论
  • 写的很不错,学到了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0288秒, 内存占用1.93 MB, 访问数据库28次

冀ICP备19034377号