Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 DOM 解析这个标签?
<gd:where startTime="Jan 4 2012" endTime="Jan 5 2012"/>
我想要这个标签的startTimeand endTime。
startTime
endTime
尝试使用这个
getAttributeValue(null,"startTime")
编写 xml 解析器非常有指导意义,但如果您在命名空间方面遇到问题。我建议使用现有的 xml 解析库。
如果你想知道,搜索解析带有命名空间的xml元素
simplexml和xpath应该都可以正常工作。