当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP DOMNode getNodePath()用法及代码示例


DOMNode::getNodePath()函数是PHP中的内置函数,用于获取节点的XPath位置路径。

用法:

string DOMNode::getNodePath( void )

参数:此函数不接受任何参数。


返回值:此函数返回包含XPath的字符串,如果出现错误,则返回NULL。

以下示例说明了PHP中的DOMNode::getNodePath()函数:

范例1:

<?php 
  
// Create a new DOMDocument instance 
$dom = new DOMDocument; 
  
// Load the XML 
$dom->loadXML(' 
<root> 
    <h1>GeeksforGeeks</h1> 
</root> 
'); 
  
// Print XPath of the element 
echo $dom->getElementsByTagName('h1') 
    ->item(0)->getNodePath(); 
?>

输出:

/root/h1

范例2:

<?php 
   
// Create a new DOMDocument instance 
$dom = new DOMDocument; 
   
// Load the XML 
$dom->loadXML(' 
<root> 
    <h1>Geeks</h1> 
    <div> 
        <h1>For</h1> 
    </div> 
    <h1>Geeks</h1> 
</root> 
'); 
   
// Print XPath of the element 
for ($i = 0; $i < 3; $i++) { 
  
    // Print where the line where the 'node'  
    // element was defined in 
    echo $i+1 . ') The h1 tag\'s Xpath is:' 
        . $dom->getElementsByTagName('h1') 
        ->item($i)->getNodePath() . "<br>"; 
} 
?>

输出:

1) The h1 tag's Xpath is:/root/h1[1]
2) The h1 tag's Xpath is:/root/div/h1
3) The h1 tag's Xpath is:/root/h1[2]

参考: https://www.php.net/manual/en/domnode.getnodepath.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMNode getNodePath() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。