2014-05-06 112 views
-3

我想從<conferencereport>標籤中提取href(值爲3FEDA37BCEEEB8B33FDD3B9C39FBF1CC)屬性。目前有兩個標籤可以增加這個名字。如何從使用PHP的XML標記提取「href」屬性?

請提供提取這些值的邏輯。

<conferencereportlist xml:base="" xlink:href="ConferenceReportList" xlink:type="simple" dir="asc" sort="ConferenceName" total="2"  results="2" startindex="0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.avistar.com/webapi/2008/namespace"> 
    <conferencereport xlink:type="simple" xlink:href="conferenceReports/3FEDA37BCEEEB8B33FDD3B9C39FBF1CC"> 
    <conferencename>Trial Meeting Room</conferencename> 
    <conferenceaddress></conferenceaddress> 
    <mediaprocessorhost>WIN-1A91T1BLDKV</mediaprocessorhost> 
    <starttime>05/06/2014 08:28:16 AM GMT</starttime> 
    <duration>250616</duration> 
    <participants>2</participants> 
    </conferencereport> 
    <conferencereport xlink:type="simple" xlink:href="conferenceReports/3FC55B1FFC91A2AC3FD3D7A0C3CD0EB2"> 
    <conferencename>Trial Meeting Room</conferencename> 
    <conferenceaddress></conferenceaddress> 
    <mediaprocessorhost>WIN-1A91T1BLDKV</mediaprocessorhost> 
    <starttime>05/06/2014 08:42:45 AM GMT</starttime> 
    <duration>602453</duration> 
    <participants>1</participants> 
    </conferencereport> 
</conferencereportlist> 
+0

你嘗試過什麼嗎? Google例如?你知道這不是谷歌搜索引擎,也不是free-freelancer.com網站的權利? –

+0

這不是這個網站的工作原理。嘗試一些,如果你遇到問題在這裏問。這不是一個代碼生成器。 –

+0

嗨。請嘗試在這裏看看http://stackoverflow.com/about,看看事情在這裏工作,最後你會獲得一個徽章。我相信,如果你通過互聯網查看,你會找到答案。 – Jacobi

回答

0

您是否嘗試使用DOMElement :: getAttribute =>DOMELEMENT

$href = $node->getElementsByTagName('myLink')->item(0)->getAttribute('href'); 
相關問題