Home  >  Article  >  Backend Development  >  php 取不到POST 值

php 取不到POST 值

WBOY
WBOYOriginal
2016-06-23 13:15:02872browse

用网页 提交表单,发到php 完全可以没问题。

现在 客户端用c++ 发过去,
@file_get_contents('php://input');  可以取到! 显示 q=test

然而, $_POST['q'] 却怎么也取不出来。 $_POST 数组为空

整个请求头为:
POST /xxx.php?ent_id=xxxx&from=xxxx HTTP/1.1
Connection: Keep-Alive
User-Agent: Tsl/0.1
Content-Length: 6
Host: 127.0.0.1

(然而, 同样的请求,发到别人服务器上是可以的)

求教各位大神!


回复讨论(解决方案)

对比浏览器发的请求:
多了

Content-Type: application/x-www-form-urlencoded
Referer: http://127.0.0.1/xxxxx

两相, 应该不会和这个有关吧。。。


如果要用$_POST获取到,需要有Content-Type: application/x-www-form-urlencoded

参考: http://blog.csdn.net/fdipzone/article/details/40098169

是的,php的$_POST 需要 有ContentType 才解析。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn