1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
--TEST--
Dom\XMLDocument interaction with XPath
--EXTENSIONS--
dom
--FILE--
<?php
$dom = Dom\XMLDocument::createFromString(<<<XML
<?xml version="1.0"?>
<root>
<p>hi</p>
<element xmlns="urn:e" xmlns:a="urn:a">
<?target data?>
<!-- comment -->
</element>
</root>
XML);
$xpath = new Dom\XPath($dom);
echo "--- Get data of the paragraph ---\n";
$result = $xpath->query("//p");
var_dump($result);
var_dump($result->item(0)->textContent);
$result = $xpath->evaluate("//p");
var_dump($result);
var_dump($result->item(0)->textContent);
var_dump($xpath->evaluate("string(//p)"));
var_dump($xpath->evaluate("string-length(//p)"));
var_dump($xpath->evaluate("boolean(//p)"));
echo "--- Get data of special nodes ---\n";
$result = $xpath->query("//*/comment()|//*/processing-instruction()");
foreach ($result as $item) {
var_dump(get_class($item));
var_dump($item->textContent);
}
echo "--- Get a namespace node ---\n";
// Namespace nodes don't exist in modern day DOM.
try {
var_dump($xpath->evaluate("//*/namespace::*"));
} catch (DOMException $e) {
echo $e->getCode(), ": ", $e->getMessage(), "\n";
}
?>
--EXPECT--
--- Get data of the paragraph ---
object(Dom\NodeList)#4 (1) {
["length"]=>
int(1)
}
string(2) "hi"
object(Dom\NodeList)#5 (1) {
["length"]=>
int(1)
}
string(2) "hi"
string(2) "hi"
float(2)
bool(true)
--- Get data of special nodes ---
string(25) "Dom\ProcessingInstruction"
string(4) "data"
string(11) "Dom\Comment"
string(9) " comment "
--- Get a namespace node ---
9: The namespace axis is not well-defined in the living DOM specification. Use Dom\Element::getInScopeNamespaces() or Dom\Element::getDescendantNamespaces() instead.
|