Home
last modified time | relevance | path

Searched refs:container (Results 1 – 25 of 136) sorted by relevance

123456

/PHP-8.2/Zend/tests/offsets/
H A Dappending_containers.phpt9 echo zend_test_var_export($container), " container:\n";
20 NULL container:
25 false container:
32 true container:
34 4 container:
36 5.5 container:
38 '10' container:
40 '25.5' container:
44 [] container:
49 STDERR container:
[all …]
H A Dappending_containers_in_fetch.phpt9 echo zend_test_var_export($container), " container:\n";
20 NULL container:
28 false container:
38 true container:
40 4 container:
42 5.5 container:
44 '10' container:
46 '25.5' container:
50 [] container:
58 STDERR container:
[all …]
H A Dtest_variable_offsets.inc3 //$container var declaration in const generated file
8 var_dump($container[$dimension]);
15 $container[$dimension] = 5;
22 var_dump($container[$dimension]);
29 $container[$dimension] += 20;
36 var_dump(isset($container[$dimension]));
42 var_dump(empty($container[$dimension]));
55 unset($container[$dimension]);
69 $container[$dimension][$dimension] = 5;
76 $container[$dimension][$dimension] += 25;
[all …]
/PHP-8.2/ext/dom/tests/
H A DDOMElement_insertAdjacentText.phpt9 $dom->loadXML('<?xml version="1.0"?><container><p>foo</p></container>');
20 $container = $dom->documentElement;
21 $p = $container->firstElementChild;
62 <container>A<p>foo</p></container>
64 <container>A<p>Bfoo</p></container>
66 <container>A<p>BfooC</p></container>
68 <container>A<p>BfooC</p>D</container>
71 <container>A<p>foo</p></container>
73 <container>A<p>Bfoo</p></container>
75 <container>A<p>BfooC</p></container>
[all …]
H A DDOMElement_insertAdjacentElement.phpt96 <container><A/><p>foo</p></container>
99 <container><A/><p><B/>foo</p></container>
102 <container><A/><p><B/>foo<C/></p></container>
105 <container><A/><p><B/>foo<C/></p><D/></container>
109 <container><A/><p>foo</p></container>
112 <container><A/><p><B/>foo</p></container>
115 <container><A/><p><B/>foo<C/></p></container>
118 <container><A/><p><B/>foo<C/></p><D/></container>
123 <container xmlns:foo="some:ns"><foo:bar/></container>
126 <container><div><p/></div></container>
[all …]
H A DDOMChildNode_methods_without_parent.phpt10 <container>
12 </container>
15 $container = $doc->documentElement;
16 $child = $container->firstElementChild;
29 <container>
31 </container>
35 <container>
37 </container>
41 <container>
43 </container>
H A DreplaceWith_non_viable_next_sibling.phpt10 <container>
14 </container>
17 $container = $doc->documentElement;
18 $child = $container->firstElementChild;
28 <container>
32 </container>
34 <container>
36 </container>
H A Dgh11906.phpt10 <container>
12 </container>
15 $container = $doc->documentElement;
16 $child = $container->firstElementChild;
34 <container>
36 </container>
41 <container>
43 </container>
H A Dgh12616_1.phpt11 <container xmlns="http://symfony.com/schema/dic/services">
13 </container>
30 <container>
32 </container>
34 <container>
36 </container>
H A DDOMElement_prefix_empty.phpt9 $dom->loadXML("<hello:container xmlns:conflict=\"urn:foo\" xmlns:hello=\"http://www.w3.org/1999/xht…
11 $container = $dom->documentElement;
15 $container->prefix = "";
20 $container->prefix = "\0foobar";
25 $container->prefix = "hello";
31 $container->prefix = "conflict";
41 <container xmlns:conflict="urn:foo" xmlns:hello="http://www.w3.org/1999/xhtml" xmlns="http://www.w3…
44 <container xmlns:conflict="urn:foo" xmlns:hello="http://www.w3.org/1999/xhtml" xmlns="http://www.w3…
47 <hello:container xmlns:conflict="urn:foo" xmlns:hello="http://www.w3.org/1999/xhtml" xmlns="http://…
51 <hello:container xmlns:conflict="urn:foo" xmlns:hello="http://www.w3.org/1999/xhtml" xmlns="http://…
H A Dclone_attribute_namespace_01.phpt10 $dom->loadXML('<?xml version="1.0"?><container/>');
64 <container xmlns:foo="some:ns"/>
66 <container xmlns:foo="some:ns" foo:bar="value"/>
69 <container/>
71 <container><child xmlns:foo="some:ns" foo:bar="value"/></container>
74 <container/>
76 <container><child xmlns:foo="some:ns" foo:bar="value"/></container>
79 <container/>
81 <container><child xmlns:foo="some:ns" foo:bar="value"/></container>
H A DDOMCharacterData_replaceWith_self.phpt8 $dom->loadXML('<?xml version="1.0"?><container><![CDATA[Hello]]></container>');
15 <container><![CDATA[Hello]]></container>
/PHP-8.2/ext/dom/tests/gh11830/
H A Dhierarchy_variation.phpt10 <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 …]
/PHP-8.2/ext/dom/tests/compareDocumentPosition/
H A Dcontains_element_direct_descendent.phpt11 <container>
13 </container>
16 $container = $dom->documentElement;
17 $div = $container->firstChild;
19 var_dump($container->compareDocumentPosition($div) === (DOMNode::DOCUMENT_POSITION_FOLLOWING | DOMN…
20 var_dump($div->compareDocumentPosition($container) === (DOMNode::DOCUMENT_POSITION_PRECEDING | DOMN…
H A Dcontains_attribute_longer_descendent.phpt11 <container>
15 </container>
18 $container = $dom->documentElement;
19 $p = $container->firstElementChild->firstElementChild;
22 var_dump($container->compareDocumentPosition($attribute) === (DOMNode::DOCUMENT_POSITION_FOLLOWING …
23 var_dump($attribute->compareDocumentPosition($container) === (DOMNode::DOCUMENT_POSITION_PRECEDING …
H A Dcontains_attribute_direct_descendent.phpt11 <container align="center"/>
14 $container = $dom->documentElement;
15 $attribute = $container->attributes[0];
17 var_dump($container->compareDocumentPosition($attribute) === (DOMNode::DOCUMENT_POSITION_FOLLOWING …
18 var_dump($attribute->compareDocumentPosition($container) === (DOMNode::DOCUMENT_POSITION_PRECEDING …
H A Dcontains_element_longer_descendent.phpt11 <container>
18 </container>
22 $container = $xpath->query("//container")->item(0);
27 …var_dump($container->compareDocumentPosition($element) === (DOMNode::DOCUMENT_POSITION_FOLLOWING |…
28 …var_dump($element->compareDocumentPosition($container) === (DOMNode::DOCUMENT_POSITION_PRECEDING |…
/PHP-8.2/Zend/tests/weakrefs/
H A Dgh10043-007.phpt18 $container = new Canary('container');
20 $container->canary = $canary;
23 $map[$canary] = $container;
26 unset($container, $canary);
32 1container
/PHP-8.2/Zend/tests/
H A Ddereference_005.phpt9 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 Dbug64417.phpt6 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 Dbug74669.phpt8 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/delayed_freeing/
H A Delement_declaration.phpt15 <container><parent/></container>
34 <container><parent/></container>
39 <container><parent/></container>
/PHP-8.2/ext/dom/tests/manually_call_constructor/
H A Dentityreference.phpt16 <container/>
32 <container>&foo2;</container>
34 <container>&foo2;&foo3;</container>
H A Dprocessinginstruction.phpt16 <container/>
32 <container><?name2 value2?></container>
34 <container><?name2 value2?><?name3 value3?></container>
H A Dtext.phpt16 <container/>
30 <container>my new value</container>
32 <container>my new value
33 my new new value</container>

Completed in 38 milliseconds

123456