如何在php中接受XML post请求?

时间:2012-06-27 16:30:56

标签: php xml request

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

1 个答案:

答案 0 :(得分:2)

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

$content = file_get_contents('php://input');