Home
last modified time | relevance | path

Searched refs:nodes (Results 1 – 25 of 61) sorted by relevance

123

/PHP-8.3/ext/dom/tests/
H A DDOMNode_normalize_basic.phpt14 * Calculate the number of title text nodes (1).
16 * Normalize author. Calculate the number of title text nodes (2).
17 * Normalize title. Calculate the number of title text nodes (1).
34 echo "Number of child nodes of title = ";
47 echo "Number of child nodes of title after normalizing author = ";
51 // should concatenate first and second title text nodes
54 echo "Number of child nodes of title after normalizing title = ";
59 Number of child nodes of title = int(1)
60 Number of child nodes of title after adding second title = int(2)
61 Number of child nodes of title after normalizing author = int(2)
[all …]
H A DDOMNode_hasChildNodes_basic.phpt2 Test whether a node has child nodes: hasChildNodes()
13 * Check for child nodes of the <book>, <title> and This is the title
28 echo "Root has child nodes: ";
31 echo "Title has child nodes: ";
34 echo "Text has child nodes: ";
39 Root has child nodes: bool(true)
40 Title has child nodes: bool(true)
41 Text has child nodes: bool(false)
H A DDOMDocumentFragment_appendXML_hasChildNodes_basic.phpt11 echo "has child nodes\n";
13 echo "has no child nodes\n";
17 echo "has child nodes\n";
19 echo "has no child nodes\n";
23 has no child nodes
24 has child nodes
H A DDOMNode_hasChildNodes.phpt17 echo "Document has child nodes\n";
20 echo "Document has child nodes\n";
28 echo "Document has child nodes\n";
31 echo "Document with 2 child nodes\n";
39 Document has child nodes
41 Document has child nodes
46 Document has child nodes
48 Document with 2 child nodes
H A Dbug67949.phpt17 $nodes = $doc->getElementsByTagName('div');
20 var_dump(isset($nodes[0]));
21 var_dump(isset($nodes[1]));
22 var_dump(isset($nodes[-1]));
25 var_dump($nodes[0]->textContent);
26 var_dump($nodes[1]->textContent);
31 var_dump(isset($nodes[$offset]), $nodes[$offset]->textContent);
38 var_dump(isset($nodes[$offset]), $nodes[$offset]->textContent);
43 var_dump(isset($nodes[$offset]), $nodes[$offset]->textContent);
47 var_dump($nodes[][] = 1);
H A Dbug42082.phpt9 $nodes = $xpath->query('*');
10 echo get_class($nodes), "\n";
11 var_dump($nodes->length);
12 $length = $nodes->length;
13 var_dump(empty($nodes->length), empty($length));
H A Duaf_doctype_iterator.phpt2 UAF when removing doctype and iterating over the child nodes
17 $nodes = $ref->childNodes;
19 foreach($nodes as $str) {}
20 var_dump($nodes);
H A DDOMNode_getLineNo_basic.phpt10 $nodes = $doc->getElementsByTagName('title');
11 foreach($nodes as $node) {
H A Dbug43364.phpt2 Bug #43364 (recursive xincludes don't remove internal xml nodes properly)
7 function loopElements($nodes)
10 foreach($nodes as $node) {
H A Dgh15551.phpt8 $nodes = $fragment->childNodes;
9 $iter = $nodes->getIterator();
H A DDOMNode_getNodePath_basic.phpt10 $nodes = $doc->getElementsByTagName('title');
11 foreach($nodes as $node) {
H A DchildNodes_current_crash.phpt11 $nodes = $dom->documentElement->childNodes;
12 $iter = $nodes->getIterator();
H A DDOMNode_removeChild_basic.phpt40 echo "original has $len nodes\n";
51 echo "after text removed it now has $len nodes\n";
59 original has 5 nodes
88 after text removed it now has 2 nodes
H A Dentity_reference_stale_02.phpt21 $nodes = $ref->childNodes;
22 $iter = $nodes->getIterator();
H A Dentity_reference_stale_01.phpt19 $nodes = $ref->childNodes;
23 var_dump($nodes);
H A Dxpath_domnamespacenode.phpt15 $nodes = $xpath->query('//namespace::*');
16 var_dump($nodes->item(0));
H A DDOMNode_DOMNameSpaceNode_isConnected.phpt29 echo "--- Indirect removal should set isConnected to false for affected nodes ---\n";
52 --- Indirect removal should set isConnected to false for affected nodes ---
/PHP-8.3/ext/dom/
H A Dphp_dom.stub.php273 /** @param DOMNode|string $nodes */
276 /** @param DOMNode|string $nodes */
279 /** @param DOMNode|string $nodes */
287 /** @param DOMNode|string $nodes */
290 /** @param DOMNode|string $nodes */
293 /** @param DOMNode|string $nodes */
482 /** @param DOMNode|string $nodes */
485 /** @param DOMNode|string $nodes */
488 /** @param DOMNode|string $nodes */
534 /** @param DOMNode|string $nodes */
[all …]
H A Dparentnode.c130 if (Z_TYPE(nodes[i]) == IS_OBJECT) { in dom_is_node_in_list()
131 if (dom_object_get_node(Z_DOMOBJ_P(nodes + i)) == node_to_find) { in dom_is_node_in_list()
181 if (Z_TYPE(nodes[i]) == IS_OBJECT) { in dom_zvals_to_fragment()
182 newNodeObj = Z_DOMOBJ_P(&nodes[i]); in dom_zvals_to_fragment()
216 ZEND_ASSERT(Z_TYPE(nodes[i]) == IS_STRING); in dom_zvals_to_fragment()
261 zend_uchar type = Z_TYPE(nodes[i]); in dom_sanity_check_node_list_for_insertion()
263 const zend_class_entry *ce = Z_OBJCE(nodes[i]); in dom_sanity_check_node_list_for_insertion()
266 xmlNodePtr node = dom_object_get_node(Z_DOMOBJ_P(nodes + i)); in dom_sanity_check_node_list_for_insertion()
367 dom_parent_node_append(context, nodes, nodesc); in dom_parent_node_prepend()
418 if (!dom_is_node_in_list(nodes, nodesc, viable_next_sibling)) { in dom_parent_node_after()
[all …]
H A Dphp_dom.h159 void dom_parent_node_prepend(dom_object *context, zval *nodes, uint32_t nodesc);
160 void dom_parent_node_append(dom_object *context, zval *nodes, uint32_t nodesc);
161 void dom_parent_node_after(dom_object *context, zval *nodes, uint32_t nodesc);
162 void dom_parent_node_before(dom_object *context, zval *nodes, uint32_t nodesc);
163 void dom_parent_node_replace_children(dom_object *context, zval *nodes, uint32_t nodesc);
165 void dom_child_replace_with(dom_object *context, zval *nodes, uint32_t nodesc);
/PHP-8.3/ext/pdo_pgsql/tests/
H A Dbug43925.phpt17 @$dbh->query('DROP TABLE nodes');
20 CREATE TABLE nodes
28 $dbh->query('INSERT INTO nodes (id, root, lft, rgt) VALUES (1, 1, 1, 6);');
29 $dbh->query('INSERT INTO nodes (id, root, lft, rgt) VALUES (2, 1, 2, 3);');
30 $dbh->query('INSERT INTO nodes (id, root, lft, rgt) VALUES (3, 1, 4, 5);');
35 FROM nodes
55 $dbh->query('DROP TABLE nodes');
/PHP-8.3/ext/simplexml/tests/
H A Dbug48601.phpt10 $nodes = $sxe->xpath("/root/node2/@test");
12 if (! is_array($nodes)) {
15 echo "Result Count: " . count($nodes) . "\n";
/PHP-8.3/ext/standard/tests/serialize/
H A Dbug78438.phpt64 $nodes = [$tree];
67 while (count($nodes) > 0) {
70 $node = array_shift($nodes);
72 $nodes[] = $node;
/PHP-8.3/ext/xmlreader/tests/
H A Dnext_basic.phpt8 $xml = '<?xml version="1.0" encoding="UTF-8"?><nodes><node1><sub /></node1>
9 <node2><sub /></node2><node3><sub /></node3><node4><sub /></node4></nodes>';
/PHP-8.3/Zend/tests/
H A Dreplace_pred_pi_node.phpt2 Handling of pi nodes when replacing a predecessor

Completed in 39 milliseconds

123