我需要得到唯一的形象,在當前節點,而不是在子節點
我想只有green/yellow/red/black
圖像,而不not_important.gif
圖像0 我可以使用查詢'.//table/tr/td/img'
但我需要它的內部循環php DomXPath - 如何獲取圖像在當前節點而不是在子節點?
<?php
/////////////////////////////////////////////////////////////////////
$html='
<table>
<tr>
<td colspan="2">
<span>
<img src="not_important.gif" />
</span>
<img src="green.gif" />
</td>
</tr>
<tr>
<td>
<span>yellow</span>
<img src="yellow.gif" />
</td>
<td>
<span>red</span>
<img src="red.gif" />
</td>
</tr>
</table>
<table>
<tr>
<td>
<span>
<img src="not_important.gif" />
</span>
<img src="black.gif" />
</td>
</tr>
</table>
';
/////////////////////////////////////////////////////////////////////
$dom = new DOMDocument();
$dom->loadHTML($html);
$xpath = new DomXPath($dom);
/////////////////////////////////////////////////////////////////////
$query = $xpath->query('.//table/tr/td');
for($x=0,$results=''; $x<$query->length; $x++)
{
$x1=$x+1;
$image = $query->item($x)->getELementsByTagName('img')->item(0)->getAttribute('src');
$results .= "image $x1 is : $image<br/>";
}
echo $results;
/////////////////////////////////////////////////////////////////////
?>
我可以做到這一點通過$query->item()->
我想has_attributes
和getElementsByTagNameNS
和getElementById
但我失敗::
hi fireeyedboy,非常感謝你。這是完美的+1 ..謝謝:: –
+1的解釋要求比我更好 – Phil
@ al-dr:很高興聽到!快樂的編碼! :) –