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
相关用法
- PHP DOMNode cloneNode()用法及代码示例
- PHP DOMNode appendChild()用法及代码示例
- PHP cos( )用法及代码示例
- PHP each()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- CSS var()用法及代码示例
- p5.js value()用法及代码示例
- p5.js arc()用法及代码示例
- PHP sin( )用法及代码示例
- PHP abs()用法及代码示例
- d3.js d3.rgb()用法及代码示例
- d3.js d3.lab()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMNode getLineNo() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。