update : 2015.11.03
php.shukuma.com

검색:
 
 
Get line number for a node

DOMNode::getLineNo

(PHP 5 >= 5.3.0, PHP 7)

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