DOMNode::getLineNo

(PHP 5 >= 5.3.0, PHP 7)
Get line number for a node
public int DOMNode::getLineNo ( void )

Gets line number for where the node is defined.

Returns:

Always returns the line number where the node was defined in.

Examples:
DOMNode::getLineNo() example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
// XML dump for below example
$xml = <<<XML
<?xml version="1.0" encoding="utf-8"?>
<root>
    <node />
</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
printf('The <node> tag is defined on line %d'$dom->getElementsByTagName('node')->item(0)->getLineNo());
?>

The above example will output:

The <node> tag is defined in line 3
doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.