PHP XPath クエリ:
$query = $xpathvar->query('//siri:Service');
foreach($query as $service) {
echo $service->textContent;
// Here I need to also echo this Vehicle's reg
}
対象となる XML:
<Vehicle>
<CategoryA>
<Service>123123123</Service>
</CategoryA>
<CategoryB>
<SubCategoryA>
<Reg>ASDF_XC1</Reg>
</SubCategoryA>
</CategoryB>
</Vehicle>
// Imagine many more vehicles here each with a service and reg
PHP を変更して、それぞれの Reg も取得するにはどうすればよいですか? Service と Reg は、取得時に同じ車両内にある必要があります (ランダムなペアではありません)。