summaryrefslogtreecommitdiff
path: root/ext/dom/tests/DOMNode_getLineNo_basic.phpt
blob: 3f57681c3e072d9f263419a222b8895d49157e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--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)