我SimpleXMLElement
用来评估 XPath 查询。
<!-- $document -->
<?xml version="1.0"?>
<hey>
<name>Donovan</name>
</hey>
使用 XPath $xpath = "/hey/name"
,例如:
$xml = new SimpleXMLElement($document);
$result = $xml->xpath($xpath);
有没有办法在字符串30
中获取 XMLElement的位置(在这种情况下) ?name
$document