标签: php xml request
对于Android应用程序,数据需要作为xml请求发布到php文件。 如何在php端读取XML请求。
答案 0 :(得分:2)
使用php://input和file_get_contents()获取原始输入。
file_get_contents()
$content = file_get_contents('php://input');