Searched refs:child1 (Results 1 – 13 of 13) sorted by relevance
/PHP-8.1/ext/simplexml/tests/ |
H A D | 030.phpt | 10 <child1>test</child1> 11 <child1>test 2</child1> 18 echo $sxe->child1[0]."\n"; 19 echo $sxe->child1[1]."\n\n"; 21 var_dump(isset($sxe->child1[1])); 22 unset($sxe->child1[1]); 23 var_dump(isset($sxe->child1[1]));
|
H A D | 031.phpt | 10 <child1>test</child1> 11 <child1>test 2</child1> 52 <child1>test</child1> 53 <child1>test 2</child1>
|
/PHP-8.1/ext/dom/tests/ |
H A D | DOMNode_removeChild_error1.phpt | 10 $child1 = $document->createElement('child1'); 12 $real_parent->appendChild($child1); 15 $parent->removeChild($child1);
|
H A D | DOMNode_replaceChild_error1.phpt | 10 $child1 = $document->createElement('child1'); 13 $real_parent->appendChild($child1); 16 $parent->replaceChild($child3, $child1);
|
H A D | gh12616_3.phpt | 12 <child1 xmlns:x="http://symfony.com/schema/dic/services"> 15 </child1> 29 echo "--- Namespaces of child1 ---\n"; 31 foreach ($xpath->query("/container/child1/namespace::*") as $ns) { 35 echo "--- Namespaces of child1/foo (both nodes) ---\n"; 37 foreach ($xpath->query("/container/child1/foo/namespace::*") as $ns) { 51 <child1> 54 </child1> 60 --- Namespaces of child1 --- 79 --- Namespaces of child1/foo (both nodes) ---
|
/PHP-8.1/Zend/ |
H A D | zend_ast.h | 240 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_2(zend_ast_kind kind, zend_ast *child1, zend_ast … 241 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_3(zend_ast_kind kind, zend_ast *child1, zend_ast … 242 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_4(zend_ast_kind kind, zend_ast *child1, zend_ast … 255 …* zend_ast_create_ex_2(zend_ast_kind kind, zend_ast_attr attr, zend_ast *child1, zend_ast *child2)… in zend_ast_create_ex_2() argument 256 zend_ast *ast = zend_ast_create_2(kind, child1, child2); in zend_ast_create_ex_2() 260 …* zend_ast_create_ex_3(zend_ast_kind kind, zend_ast_attr attr, zend_ast *child1, zend_ast *child2,… in zend_ast_create_ex_3() argument 261 zend_ast *ast = zend_ast_create_3(kind, child1, child2, child3); in zend_ast_create_ex_3() 266 zend_ast *ast = zend_ast_create_4(kind, child1, child2, child3, child4); in zend_ast_create_ex_4() 271 zend_ast *ast = zend_ast_create_5(kind, child1, child2, child3, child4, child5); in zend_ast_create_ex_5() 278 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_list_2(zend_ast_kind kind, zend_ast *child1, zend… [all …]
|
H A D | zend_ast.c | 128 ast->child[1] = child1; in zend_ast_create_decl() 176 ast->child[0] = child1; in zend_ast_create_2() 178 if (child1) { in zend_ast_create_2() 198 ast->child[0] = child1; in zend_ast_create_3() 201 if (child1) { in zend_ast_create_3() 223 ast->child[0] = child1; in zend_ast_create_4() 227 if (child1) { in zend_ast_create_4() 251 ast->child[0] = child1; in zend_ast_create_5() 256 if (child1) { in zend_ast_create_5() 322 list->child[0] = child1; in zend_ast_create_list_2() [all …]
|
/PHP-8.1/ext/xmlwriter/tests/ |
H A D | 011.phpt | 16 xmlwriter_start_element_ns($xw, 'ns1', 'child1', 'urn:ns1'); 28 <ns1:child1 ns1:att1="<>"'&" xmlns:ns1="urn:ns1"> 30 </ns1:child1>
|
H A D | OO_010.phpt | 17 $xw->startElementNS('ns1', 'child1', 'urn:ns1'); 29 <ns1:child1 ns1:att1="<>"'&" xmlns:ns1="urn:ns1"> 31 </ns1:child1>
|
H A D | 012.phpt | 16 xmlwriter_start_element_ns($xw, 'ns1', 'child1', 'urn:ns1'); 30 <ns1:child1 ns1:att1="<>"'&" xmlns:ns1="urn:ns1"> 32 </ns1:child1>
|
H A D | OO_011.phpt | 17 $xw->startElementNS('ns1', 'child1', 'urn:ns1'); 31 <ns1:child1 ns1:att1="<>"'&" xmlns:ns1="urn:ns1"> 33 </ns1:child1>
|
H A D | 007.phpt | 13 xmlwriter_start_element_ns($xw, 'ns1', 'child1', 'urn:ns1'); 31 …<ns1:child1 ns1:att1="a&b" att2="double" single'" ns1:att2="<>"'&" xmlns:n… 33 </ns1:child1>
|
H A D | OO_007.phpt | 14 $xw->startElementNS('ns1', 'child1', 'urn:ns1'); 32 …<ns1:child1 ns1:att1="a&b" att2="double" single'" ns1:att2="<>"'&" xmlns:n… 34 </ns1:child1>
|
Completed in 26 milliseconds