我有一个 XML 文件:-
<products>
<product_id value="1">
<tab_id value="251">
<dist_region value="5" />
<dist_region value="10066" />
<dist_region value="10069" />
</tab_id>
</product_id>
</products>
我正在使用这个 xpath:-
list($prid) = $product->xpath("//dist_region[@value]/@value");
$prid=(string)$prid;
if(strlen(trim($prid))==0)
{
echo ' Is not Match In Product';
exit;
}
echo $prid;
并获得输出:-
5
我想像这样输出:- 所有 dist_region 像:-
5,10066,10069
我怎么能得到这个?