Home
last modified time | relevance | path

Searched refs:node (Results 276 – 300 of 343) sorted by last modified time

1...<<11121314

/php-src/ext/tidy/tests/
H A D012.phpt8 function dump_nodes(tidyNode $node) {
10 var_dump($node->hasChildren());
11 if($node->hasChildren()) {
13 foreach($node->child as $c) {
H A D036.phpt9 $node = $tidy->body();
12 $node->value = "";
18 $node->name = "";
24 $node->type = 1;
30 $node->line = 1;
36 $node->column = 1;
42 $node->proprietary = true;
48 $node->id = null;
54 $node->attribute = [];
60 $node->child = [];
/php-src/ext/standard/tests/serialize/
H A Dbug78438.phpt70 $node = array_shift($nodes);
71 foreach ($node->childs as $node) {
72 $nodes[] = $node;
86 > Unserialized total node count was 1, expected 1: CORRECT!
91 > Unserialized total node count was 4, expected 4: CORRECT!
96 > Unserialized total node count was 13, expected 13: CORRECT!
101 > Unserialized total node count was 40, expected 40: CORRECT!
106 > Unserialized total node count was 121, expected 121: CORRECT!
111 > Unserialized total node count was 364, expected 364: CORRECT!
116 > Unserialized total node count was 1093, expected 1093: CORRECT!
[all …]
/php-src/ext/standard/tests/misc/
H A Dget_browser_variation3.phpt1915 Agent node-fetch/1.0 (+https://github.com/node-fetch/node-fetch)
H A Duser_agents.txt951 node-fetch/1.0 (+https://github.com/node-fetch/node-fetch)
/php-src/ext/standard/tests/array/
H A Darray_shift_variation8.phpt8 * (e.g. working with linked node trees), beware that array_shift() may not work as you expect:
/php-src/ext/spl/tests/
H A Dbug54971.phpt10 <node>val1</node>
11 <node>val2</node>
20 $items = $xpath->query('//node');
/php-src/ext/soap/
H A Dphp_xml.h22 #define get_attribute(node, name) get_attribute_ex(node, name, NULL) argument
23 #define get_node(node, name) get_node_ex(node, name, NULL) argument
24 #define get_node_recursive(node, name) get_node_recursive_ex(node, name, NULL) argument
25 #define get_node_with_attribute(node, name, attr, val) get_node_with_attribute_ex(node, name, NULL,… argument
26 #define get_node_with_attribute_recursive(node, name, attr, val) get_node_with_attribute_recursive_… argument
27 #define node_is_equal(node, name) node_is_equal_ex(node, name, NULL) argument
28 #define attr_is_equal(node, name) attr_is_equal_ex(node, name, NULL) argument
33 xmlNsPtr attr_find_ns(xmlAttrPtr node);
34 xmlNsPtr node_find_ns(xmlNodePtr node);
35 int attr_is_equal_ex(xmlAttrPtr node, char *name, char *ns);
[all …]
/php-src/ext/simplexml/tests/
H A D018.phpt31 foreach($xml->children() as $name => $node) {
33 foreach($node->attributes() as $attr => $value) {
37 traverse_xml($pad." ",$node);
H A D026.phpt22 foreach($xml->children() as $node)
24 traverse_xml($node, $pad.' ');
H A D027.phpt20 foreach($xml->children() as $node)
22 traverse_xml($node, $pad.' ');
H A Dbug61335.phpt2 Bug #61335 - Access to array node returns wrong truth value
H A Dbug66084_0.phpt2 Bug #66084 simplexml_load_string() mangles empty node name, var_dump variant
H A Dbug66084_1.phpt2 Bug #66084 simplexml_load_string() mangles empty node name, json variant
H A Dbug69491.phpt2 Bug #69491 (simplexml doesn't correctly parse empty nodes on same line as another node)
H A Dbug76712.phpt2 BUg #76712 (Assignment of empty string creates extraneous text node)
H A D028.phpt20 foreach($xml->children() as $node)
22 traverse_xml($node, $pad.' ');
H A Dbug27010.phpt2 Bug #27010 (segfault and node text not displayed when returned from children())
H A Dbug37386.phpt2 Bug #39760 (autocreating element doesn't assign value to first node)
10 $sx1->node[0] = 'node1';
11 $sx1->node[1] = 'node2';
14 $node = $sx1->node[0];
15 $node[0] = 'New Value';
22 <root><node>node1</node><node>node2</node></root>
25 <root><node>New Value</node><node>node2</node></root>
H A Dbug40451.phpt2 Bug #40451 (addAttribute() may crash when used with non-existent child node)
H A Dbug41861.phpt2 Bug #41861 (getNamespaces() returns the namespaces of a node's siblings)
H A Dbug43221.phpt8 $n = $xml->addChild("node", "value");
17 <root><node xmlns:foo="http://bar.com" a="b" foo:e="f">value</node></root>
H A Dprofile01.phpt2 SimpleXML [profile]: Accessing a simple node
/php-src/ext/simplexml/
H A Dphp_simplexml.h54 php_libxml_node_ptr *node; member
H A Dphp_simplexml_exports.h30 if ((__s)->node && (__s)->node->node) { \
31 __n = (__s)->node->node; \

Completed in 97 milliseconds

1...<<11121314