如果continue;
不包含图片,我需要TD
。
我试过了:
if(!$image){continue;}
但这没效果。
<?php
/////////////////////////////////////////////////////////////////////
$html='
<table>
<tr>
<td colspan="2">
<span>green</span>
<img src="green.gif" />
</td>
</tr>
<tr>
<td>
<span>yellow</span>
no image !!
</td>
<td>
<span>red</span>
<img src="red.gif" />
</td>
</tr>
</table>
<table>
<tr>
<td>
<span>black</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;
$color = $query->item($x)->getElementsByTagName('span')->item(0)->nodeValue;
$image = $query->item($x)->getELementsByTagName('img');
if(!$image){continue;}
$image = $image->item(0)->getAttribute('src');
$results .= "color $x1 is : $color - and- image $x1 is : $image<br/>";
}
echo $results;
/////////////////////////////////////////////////////////////////////
?>
我该如何解决这个问题?
答案 0 :(得分:2)
尝试
.//table/tr/td[img]
或(因为loadHTML添加了HTML骨架):
/html/body/table/tr/td[img]
答案 1 :(得分:2)
尝试:
if(!count($image)){continue;}
但是像Gordon建议的那样修改你的查询会更有效率。