Home  >  Article  >  Backend Development  >  php如何解析别人POST过来的body

php如何解析别人POST过来的body

WBOY
WBOYOriginal
2016-06-13 12:26:171768browse

php怎么解析别人POST过来的body?
请问 如何解决C#post过来的数据 他说放在body里面  让我的接口调用 该如何实现拿到里面的数据 ? 求代码实例
------解决思路----------------------
file_put_contents('test.txt', print_r($_POST, 1));

看看文件内容
------解决思路----------------------
$post = file_get_contents("php://input");
var_dump($post);
------解决思路----------------------

<br /><?php<br />$data = $_POST;<br />file_put_contents('data.txt', json_encode($data), true);<br />?><br />


对方post后,看看data.txt有什么内容。
------解决思路----------------------
放在body post就是在header把二进制post过来。
参考:http://blog.csdn.net/fdipzone/article/details/40098169

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