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


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


DOMNode::getLineNo()函数是PHP中的内置函数,用于获取定义节点的行号。

用法:

DOMNode DOMNode::getLineNo( void )

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


返回值:此函数返回定义节点所在的行号。

下面给出的程序说明了PHP中的DOMNode::getLineNo()函数:程序1:

<?php 
// Create a XML variable 
$xml = <<<XML 
<?xml version="1.0" encoding="utf-8"?> 
<root> 
    <h1>GeeksforGeeks</h1> 
</root> 
XML; 
  
// Create a new DOMDocument instance 
$dom = new DOMDocument; 
  
// Load the XML 
$dom->loadXML($xml); 
  
// Print where the line where the 'node' element was defined in 
echo 'The <node> tag is defined on line ' . $dom->getElementsByTagName('h1')->item(0)->getLineNo(); 
?>

输出:

The tag is defined on line 3

程序2:

<?php 
// Create a XML variable 
$xml = <<<XML 
<?xml version="1.0" encoding="utf-8"?> 
<root> 
    <h1>Geeks</h1> 
    <h1>For</h1> 
    <h1>Geeks</h1> 
</root> 
XML; 
  
// Create a new DOMDocument instance 
$dom = new DOMDocument(); 
  
// Load the XML 
$dom->loadXML($xml); 
  
for ($i = 0; $i < 3; $i++) { 
    // Print where the line where the 'node' element was defined in 
    echo $i . ') The h1 tag is defined on line ' . $dom->getElementsByTagName('h1')->item($i)->getLineNo() . "<br>"; 
  
} 
?>

输出:

0) The h1 tag is defined on line 3
1) The h1 tag is defined on line 4
2) The h1 tag is defined on line 5

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



相关用法


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