DOMNode::getLineNo

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

DOMNode::getLineNoGet line number for a node

說(shuō)明

public DOMNode::getLineNo(): int

Gets line number for where the node is defined.

參數(shù)

此函數(shù)沒(méi)有參數(shù)。

返回值

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

范例

示例 #1 DOMNode::getLineNo() example

<?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());
?>

以上例程會(huì)輸出:

The <node> tag is defined in line 3