请问 如何解决C#post过来的数据 他说放在body里面 让我的接口调用 该如何实现拿到里面的数据 ? 求代码实例
file_put_contents('test.txt', print_r($_POST, 1));
看看文件内容
jsonp调用接口自然就收到了
求解还是不懂,连怎么测试都不知道……求测试代码
$post = file_get_contents("php://input");
var_dump($post);
<?php$data = $_POST;file_put_contents('data.txt', json_encode($data), true);?>
<?php$data = $_POST;file_put_contents('data.txt', json_encode($data), true);?>
<?php$data = $_POST;file_put_contents('data.txt', json_encode($data), true);?>
放在body post就是在header把二进制post过来。
参考: http://blog.csdn.net/fdipzone/article/details/40098169