在我有小问题的时候,只是试图学习Xpath。 请允许我说一下,我有这部XML。
<inventory>
<drink>
<lemonade supplier="mother" id="1">
<price>$2.50</price>
<amount>20</amount>
</lemonade>
<pop supplier="store" id="2">
<price>$1.50</price>
<amount>10</amount>
</pop>
</drink>
</inventory>
$result = new SimpleXMLElement($string);
$res = $result->xpath("/inventory/drink/lemonade[@supplier= mother and amount > 2]");
由于你可以看到上述询问,检查供应商,并在mon子内检查数量,那么,我如何在同一个表述中检查烟 no,基本上我不知道如何回到同一个表述中的 no子。