-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/dom/tests/
File Upload :
Current File : //usr/src/php/ext/dom/tests/DOMNode_getLineNo_basic.phpt

--TEST--
DOMNode::getLineNo()
--SKIPIF--
<?php
include('skipif.inc');
?>
--FILE--
<?php
$file = dirname(__FILE__).'/book.xml';
$doc = new DOMDocument();
$doc->load($file);
$nodes = $doc->getElementsByTagName('title');
foreach($nodes as $node) {
	var_dump($node->getLineNo());
}
?>
--EXPECTF--
int(4)
int(8)

Copyright © 2017 || Recoded By Mr.Bumblebee