通过xmlhttpresponse发布XML并从php读取xml

时间:2011-09-23 06:53:54

标签: php xml post xmlhttprequest

我已设法使用xmlhttprequest.通过帖子发送xml我还设法通过aspx页面使用

读取整个xml语法
Dim reader As System.IO.StreamReader = New System.IO.StreamReader(Page.Request.InputStream)
Dim xmlData As String = ""
xmlData = reader.ReadToEnd()

我现在正试图从php页面读取xml。 (我想阅读整个xml,标题和数据)

使用$_POST我什么都没得到 使用file_get_contents("php://input")我获取xml的数据,没有标题。

我做错了什么?我怎样才能阅读整个发布的xml?

1 个答案:

答案 0 :(得分:0)

file_get_contents完成我想要的工作。 虽然mozilla显示了纯xml数据file_get_contents