0

对于 android 应用程序,需要将数据作为 xml 请求发布到 php 文件。php端如何读取XML请求。

4

1 回答 1

2

使用php://inputfile_get_contents()获取原始输入。

$content = file_get_contents('php://input');
于 2012-06-27T16:32:04.377 回答