Searched refs:node2 (Results 1 – 9 of 9) sorted by relevance
12 $xml_element->addChild('node2','a & b');13 print $xml_element->node2."\n";14 $xml_element->node2 = 'a & b';15 print $xml_element->node2."\n";26 <root><node1>a &#38; b</node1><node2>a & b</node2></root>
11 $sx1->node[1] = 'node2';22 <root><node>node1</node><node>node2</node></root>25 <root><node>New Value</node><node>node2</node></root>
11 <ns2:node2 xmlns:ns2="#ns2" />39 children(#ns2): 'node2' -- namespaces: #ns2
10 $nodes = $sxe->xpath("/root/node2/@test");
12 $node2 = new Node;13 $node1->prop = $node2;14 $node2->prop = $node1;16 unset($node2);
31 $node2 = $root->childNodes[1];32 try { $node2->nodeValue = $badStr; } catch (Exception $e) { echo "Exception\n"; }33 try { $node2->textContent = $badStr; } catch (Exception $e) { echo "Exception\n"; }34 $data = $node2->childNodes[0];
9 <node2><sub /></node2><node3><sub /></node3><node4><sub /></node4></nodes>';
2449 xmlNodePtr node2 = this; in dom_node_compare_document_position() local2464 attr2 = node2; in dom_node_compare_document_position()2465 node2 = attr2->parent; in dom_node_compare_document_position()2490 if (node1_root == node2) { in dom_node_compare_document_position()2497 xmlNodePtr node2_root = node2; in dom_node_compare_document_position()2548 node2 = node2->parent; in dom_node_compare_document_position()2555 node2 = node2->parent; in dom_node_compare_document_position()2558 ZEND_ASSERT(node1 != node2); in dom_node_compare_document_position()2560 ZEND_ASSERT(node2 != NULL); in dom_node_compare_document_position()2563 if (node1 == node2) { in dom_node_compare_document_position()[all …]
268 $node2 = new Node('value2', 2);269 $node1->addChild($node2);
Completed in 27 milliseconds