DOMNode
在线手册:中文 英文
PHP手册

DOMNode::getLineNo

(PHP 5 >= 5.3.0)

DOMNode::getLineNoGet line number for a node

说明

public int DOMNode::getLineNo ( void )

Gets line number for where the node is defined.

参数

此函数没有参数。

返回值

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

范例

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

以上例程会输出:

The <node> tag is defined in line 3


DOMNode
在线手册:中文 英文
PHP手册
PHP手册 - N: Get line number for a node

用户评论:

luke dot NOREPLY at webconnex dot com (05-Mar-2011 02:28)

This function is buggy. It doesn't always return the correct line number, especially for text elements. As an alternative you can do something like this:

<?php
$text
= $node->ownerDocument->saveXML($node);
$line += substr_count($text, "\n");
?>

You'll want to keep a reference to $line (starting at 0) and add to it as you parse over the document recursively.

In order for this to work you have to tell DOMDocument to preserve white space before loading the document.