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.
DOMNode::getLineNo
(PHP 5 >= 5.3.0)
DOMNode::getLineNo — ノードが存在する行の番号を取得します。
説明
public int DOMNode::getLineNo
( void
)
ノードが定義された行の番号を取得します。
パラメータ
この関数にはパラメータはありません。
返り値
常にノードが定義された行の番号を返します。
例
例1 DOMNode::getLineNo() メソッドの例
<?php
// 以下の例で使うXMLのダンプ
$xml = <<<XML
<?xml version="1.0" encoding="utf-8"?>
<root>
<node />
</root>
XML;
// DOMDocumentクラスのインスタンスを生成する
$dom = new DOMDocument;
// XMLをロードする
$dom->loadXML($xml);
// <node> 要素が定義された行がどこにあるかを表示する
printf('The <node> tag is defined on line %d', $dom->getElementsByTagName('node')->item(0)->getLineNo());
?>
上の例の出力は以下となります。
The <node> tag is defined in line 3
luke dot NOREPLY at webconnex dot com
05-Mar-2011 03:28
