对于 android 应用程序,需要将数据作为 xml 请求发布到 php 文件。php端如何读取XML请求。
问问题
243 次
1 回答
2
使用php://input并file_get_contents()
获取原始输入。
$content = file_get_contents('php://input');
于 2012-06-27T16:32:04.377 回答