Searched refs:container (Results 1 – 25 of 61) sorted by relevance
123
/PHP-8.2/ext/dom/tests/ |
H A D | replaceWith_non_viable_next_sibling.phpt | 10 <container> 14 </container> 17 $container = $doc->documentElement; 18 $child = $container->firstElementChild; 28 <container> 32 </container> 34 <container> 36 </container>
|
H A D | gh11906.phpt | 10 <container> 12 </container> 15 $container = $doc->documentElement; 16 $child = $container->firstElementChild; 34 <container> 36 </container> 41 <container> 43 </container>
|
H A D | gh12616_1.phpt | 11 <container xmlns="http://symfony.com/schema/dic/services"> 13 </container> 30 <container> 32 </container> 34 <container> 36 </container>
|
H A D | DOMCharacterData_replaceWith_self.phpt | 8 $dom->loadXML('<?xml version="1.0"?><container><![CDATA[Hello]]></container>'); 15 <container><![CDATA[Hello]]></container>
|
H A D | gh12616_2.phpt | 11 <container xmlns:test="urn:test" xmlns:symfony="http://symfony.com/schema/dic/services"> 15 </container> 25 $result = $xpath->query('//container/services/test:service[@id="hello"]'); 31 <container xmlns:test="urn:test"> 35 </container>
|
H A D | gh12616_3.phpt | 11 <container> 20 </container> 31 foreach ($xpath->query("/container/child1/namespace::*") as $ns) { 37 foreach ($xpath->query("/container/child1/foo/namespace::*") as $ns) { 43 foreach ($xpath->query("/container/child2/namespace::*") as $ns) { 50 <container> 59 </container>
|
/PHP-8.2/ext/dom/tests/gh11830/ |
H A D | hierarchy_variation.phpt | 10 <container> 13 </container> 16 $container = $doc->documentElement; 17 $alone = $container->firstElementChild; 21 $testElement->prepend($alone, $container); 27 $testElement->append($alone, $container); 33 $testElement->before($alone, $container); 39 $testElement->after($alone, $container); 45 $testElement->replaceWith($alone, $container); 59 <container> [all …]
|
H A D | attribute_variation.phpt | 10 <container x="foo"> 12 </container> 54 <container x="foo"> 56 </container>
|
H A D | document_variation.phpt | 18 <container> 21 </container> 68 <container> 71 </container>
|
/PHP-8.2/Zend/tests/ |
H A D | dereference_005.phpt | 9 private $container = array(); 11 $this->container = array( 18 $this->container[$offset] = $value; 21 return isset($this->container[$offset]); 24 unset($this->container[$offset]); 27 return isset($this->container[$offset]) ? $this->container[$offset] : null;
|
H A D | bug64417.phpt | 6 private $container = array(); 9 $this->container[] = $value; 11 $this->container[$offset] = $value; 15 return isset($this->container[$offset]); 18 unset($this->container[$offset]); 22 if (isset($this->container[$offset])) { 23 $result = &$this->container[$offset];
|
/PHP-8.2/ext/spl/tests/ |
H A D | bug74669.phpt | 8 public $container; 13 $this->container = new ArrayObject(); 19 $this->container->append($element); 56 $container = new Container(); 57 $container->append('test1'); 58 $container->append('test2'); 59 $container->valid(); 60 $serialized = serialize($container); 61 unset($container); 63 $container = unserialize($serialized); [all …]
|
/PHP-8.2/ext/dom/tests/manually_call_constructor/ |
H A D | entityreference.phpt | 16 <container/> 32 <container>&foo2;</container> 34 <container>&foo2;&foo3;</container>
|
H A D | processinginstruction.phpt | 16 <container/> 32 <container><?name2 value2?></container> 34 <container><?name2 value2?><?name3 value3?></container>
|
H A D | text.phpt | 16 <container/> 30 <container>my new value</container> 32 <container>my new value 33 my new new value</container>
|
H A D | cdatasection.phpt | 16 <container/> 30 <container><![CDATA[my new value]]></container> 32 <container><![CDATA[my new value]]><![CDATA[my even newer value]]></container>
|
H A D | comment.phpt | 16 <container/> 32 <container><!--my new value--></container> 34 <container><!--my new value--><!--my even newer value--></container>
|
H A D | element.phpt | 16 <container/> 32 <container><foo2>my new value</foo2></container> 34 <container><foo2>my new value</foo2><foo3>my new new value</foo3></container>
|
H A D | documentfragment.phpt | 16 <container/> 30 <container/> 32 <container/>
|
H A D | attribute.phpt | 16 <container/> 32 <container newattribute="my new value"/> 34 <container newattribute="my new value" newnewattribute="my even newer value"/>
|
/PHP-8.2/ext/opcache/tests/jit/ |
H A D | gh12748.phpt | 8 $container = "string"; 12 var_dump(isset($container[new stdClass()])); 18 var_dump(empty($container[new stdClass()])); 24 var_dump($container[new stdClass()] ?? 'default');
|
H A D | gh12812.phpt | 9 $container = []; 13 var_dump($container['7']); 18 var_dump($container[$dimension]);
|
/PHP-8.2/ext/sockets/ |
H A D | conversions.h | 60 void from_zval_write_in6_pktinfo(const zval *container, char *in6_pktinfo_c, ser_context *ctx); 65 void from_zval_write_ucred(const zval *container, char *ucred_c, ser_context *ctx); 75 void from_zval_write_msghdr_send(const zval *container, char *msghdr_c, ser_context *ctx); 76 void from_zval_write_msghdr_recv(const zval *container, char *msghdr_c, ser_context *ctx); 80 void *from_zval_run_conversions(const zval *container,
|
/PHP-8.2/ext/standard/tests/serialize/ |
H A D | serialization_arrays_004.phpt | 20 echo "\n\n--- 1 refs container:\n"; 27 echo "\n\n--- 1,2 ref container:\n"; 34 echo "\n\n--- 1,2,3 ref container:\n"; 44 --- 1 refs container: 95 --- 1,2 ref container: 153 --- 1,2,3 ref container:
|
/PHP-8.2/ext/xml/tests/ |
H A D | gh12254.phpt | 12 var_dump(xml_parse_into_struct($parser, "<container/>", $values, $tags)); 17 xml_parse_into_struct($parser, "<container/>", $values, $tags); 19 xml_parse_into_struct($parser, "<container/>", $values, $tags);
|
Completed in 44 milliseconds
123