Home
last modified time | relevance | path

Searched refs:xpath (Results 1 – 25 of 29) sorted by relevance

12

/PHP-8.0/ext/dom/tests/
H A Ddomxpath.phpt26 $xpath = new DOMXPath($dom);
28 $xpath->registerPHPFunctions('MyAverage');
29 $xpath->registerNamespace("php", "http://php.net/xpath");
31 $xpath->registerNamespace("def", "urn::default");
32 $nodelist = $xpath->query("//def:child");
37 $count = $xpath->evaluate("count(//def:child)");
41 $xpathdoc = $xpath->document;
51 $avg = $xpath->evaluate('number(php:function("MyAverage", //def:testnode))');
55 $xpath->registerPHPFunctions('non_existent');
56 $avg = $xpath->evaluate('number(php:function("non_existent", //def:testnode))');
[all …]
H A Dbug75451.phpt2 Bug #75451 (Assertion fails while foreach on empty xpath query)
11 $xpath = new DOMXpath($dom);
12 foreach($xpath->query('/root/noexist') as $child) {
H A Dbug36756.phpt11 $xpath = new DOMXpath($dom);
12 $node = $xpath->query('/root')->item(0);
18 $xpath = new DOMXpath($dom);
19 $node = $xpath->query('//child')->item(0);
H A Dbug69373.phpt10 $xpath = new DOMXpath($doc);
11 $all = $xpath->query('//*');
H A Dbug45251.phpt16 $xpath = new DOMXPath($doc);
18 $bbb = $xpath->query('bbb', $doc->documentElement)->item(0);
H A Dbug42082.phpt8 $xpath = new DOMXPath($doc);
9 $nodes = $xpath->query('*');
H A DDOMNode_C14N_basic.phpt41 DOMNode::C14N(): Argument #3 ($xpath) must have a "query" key
42 DOMNode::C14N(): Argument #3 ($xpath) "query" option must be a string, array given
H A DDOMNode_C14NFile_basic.phpt49 DOMNode::C14NFile(): Argument #4 ($xpath) must have a "query" key
50 DOMNode::C14NFile(): Argument #4 ($xpath) "query" option must be a string, array given
/PHP-8.0/ext/simplexml/tests/
H A D008.phpt27 var_dump($sxe->xpath("elem1/elem2/elem3/elem4"));
29 var_dump($sxe->xpath("***"));
31 var_dump($sxe->xpath("**"));
45 Warning: SimpleXMLElement::xpath(): Invalid expression in %s on line %d%A
H A Dbug45553.phpt17 $atts = $x->xpath("/xml/data/@a:label");
19 $atts = $x->xpath("/xml/a:data");
21 $atts = $x->xpath("/xml/a:data/@a:label");
23 $atts = $x->xpath("/xml/a:data/@label");
25 $atts = $x->xpath("/xml/data/@label");
H A D024.phpt19 function test($xpath)
23 echo "===$xpath===\n";
24 var_dump($sxe->xpath($xpath));
H A Dbug48601.phpt2 Bug #48601 (xpath() returns FALSE for legitimate query)
10 $nodes = $sxe->xpath("/root/node2/@test");
H A DSimpleXMLElement_xpath.phpt2 Testing xpath() with invalid XML
15 var_dump($xml->xpath("BBBB"));
H A Dbug41947.phpt10 $gchild = $xml->xpath("//grandchild");
H A DSimpleXMLElement_xpath_4.phpt2 Testing xpath() with invalid XML
H A Dbug63575.phpt14 $r = current($o2->xpath('/a'));
H A Dbug38354.phpt14 foreach ($xml->xpath("//*") as $element) {
H A Dbug42259.phpt32 $ancestry = $child->xpath('ancestor-or-self::*');
H A Dsimplexml_uninitialized.phpt19 var_dump($sxe->xpath(''));
/PHP-8.0/ext/spl/tests/
H A Dbug54971.phpt21 $xpath = new DOMXPath($doc);
22 $items = $xpath->query('//node');
/PHP-8.0/ext/simplexml/
H A Dphp_simplexml.h57 xmlXPathContextPtr xpath; member
H A Dsimplexml.stub.php14 public function xpath(string $expression) {} function in SimpleXMLElement
H A Dsimplexml_arginfo.h102 ZEND_METHOD(SimpleXMLElement, xpath);
133 ZEND_ME(SimpleXMLElement, xpath, arginfo_class_SimpleXMLElement_xpath, ZEND_ACC_PUBLIC)
/PHP-8.0/ext/dom/
H A Dconfig.m423 notation.c xpath.c dom_iterators.c \
H A Dconfig.w3216 notation.c xpath.c dom_iterators.c \

Completed in 35 milliseconds

12