嗨,大家好,我已經四處尋找幫助,但沒有發現任何遺憾。我正在嘗試使用PHP來獲取XML文件的內容並從屬性中提取數據。我已經檢查過其他教程並嘗試過,但沒有任何工作。使用PHP獲取XML屬性
下面是XML文件:
<eveapi version="2">
<currentTime>2011-04-03 03:55:59</currentTime>
<result>
<rowset name="notifications" key="notificationID" columns="notificationID,typeID,senderID,sentDate,read">
<row notificationID="339040500" typeID="75" senderID="1000137" sentDate="2011-04-03 03:53:00" read="0" />
</rowset>
</result>
<cachedUntil>2011-04-03 04:25:59</cachedUntil>
</eveapi>
我試圖拉從 'TYPEID' & 'sentDate' 的數據。而且,這個XML文件可能包含多個標籤。
歡迎所有幫助,謝謝!
您是否嘗試過的SimpleXML? (http://php.net/simple_xml) – Ben 2011-04-04 05:02:37
你在PHP 4或5? – Ben 2011-04-04 05:02:59
@Ben這是2011年,我當然希望他使用PHP 5 ;-) – 2011-04-04 05:08:58