/PHP-8.4/ext/xsl/tests/ |
H A D | bug70078.phpt | 21 return 'test2'; 49 …test2</node><node>test2</node><node>test2</node><node>test2</node><node>test2</node><node>test2</n…
|
/PHP-8.4/tests/classes/ |
H A D | tostring_001.phpt | 10 class test2 38 $o = new test2; 91 ====test2==== 92 test2 Object 95 test2::__toString() 100 test2::__toString() 103 test2::__toString() 106 test2::__toString() 111 test2::__toString() 112 test2::__toString() [all …]
|
/PHP-8.4/ext/dom/tests/bug79701/ |
H A D | set_attribute_xml.phpt | 19 $fn($test2, 'xml:id', 'x'); 31 $fn($test2, 'xml:id', 'z'); 50 <test2 xml:id="y"/> 83 string(5) "test2" 86 string(5) "test2" 100 string(5) "test2" 103 string(5) "test2" 117 string(5) "test2" 120 string(5) "test2" 134 string(5) "test2" [all …]
|
H A D | id_property.phpt | 10 <test2/> 15 $test2 = $test1->nextElementSibling; 20 echo "--- After setting test2 ---\n"; 21 $test2->id = "x"; 29 echo "--- After resetting test2 ---\n"; 30 $test2->id = "y"; 42 --- After setting test2 --- 43 string(5) "test2" 47 string(5) "test2" 48 --- After resetting test2 ---
|
H A D | set_attr_value.phpt | 12 <test2 xml:id="y"/> 17 $test2 = $dom->getElementById('y'); 20 var_dump($test2?->nodeName); 26 $test2->getAttributeNode('xml:id')->$property = "x"; 34 string(5) "test2" 37 string(5) "test2" 41 string(5) "test2" 44 string(5) "test2"
|
/PHP-8.4/ext/standard/tests/general_functions/ |
H A D | call_user_func_return.phpt | 15 $t2 = 'test2'; 17 function & test2($arg1, $arg2) 31 test('test2'); 40 string(5) "test2" 42 string(5) "test2"
|
/PHP-8.4/Zend/tests/variadic/ |
H A D | basic.phpt | 14 function test2($arg1, $arg2, ...$args) { 18 test2(1, 2); 19 test2(1, 2, 3); 20 test2(1, 2, 3, 4, 5);
|
/PHP-8.4/ext/xmlwriter/tests/ |
H A D | bug79344.phpt | 13 $writer->startAttributeNS(null, 'test2', null); 14 $writer->text('test2'); 21 <foo test1="test1" test2="test2"/>
|
/PHP-8.4/ext/json/tests/ |
H A D | json_validate_001.phpt | 15 …json_validate('{ "test": {} "foo": "bar" }, "test2": {"foo" : "bar" }, "test2": {"foo" : "bar" } }… 21 json_validate('{ "test": {"foo": "bar"}, "test2": {"foo" : "bar" }, "test2": {"foo" : "bar" } }'), 22 json_validate('{ "test": {"foo": "bar"}, "test2": {"foo" : "bar" }, "test3": {"foo" : "bar" } }'),
|
/PHP-8.4/Zend/tests/named_params/ |
H A D | unpack_and_named_1.phpt | 13 function test2($a, $b, $c = 3, $d = 4) { 17 test2(...[1, 2], d: 40); 18 test2(...['b' => 2, 'a' => 1], d: 40); 21 test2(...[1, 2], b: 20); 26 test2(...[1, 'b' => 2], b: 20);
|
/PHP-8.4/Zend/tests/ |
H A D | halt_compiler2.phpt | 8 $text = "<?php echo 'test2'; var_dump(__COMPILER_HALT_OFFSET__); __HALT_COMPILER(); ?> 10 file_put_contents(__DIR__ . '/test2.php', $text); 12 include __DIR__ . '/test2.php'; 17 unlink(__DIR__ . '/test2.php');
|
H A D | bug24436.phpt | 10 if (!isset($this->test[0][0])) { print "test2\n";} 12 if (!isset($this->test)) { print "test2\n";} 20 test2 22 test2
|
H A D | bug30140.phpt | 7 public static $test2 = array(); 15 A::$test2 = "y"; 18 var_dump(A::$test2); 21 var_dump(B::$test2);
|
H A D | first_class_callable_optimization.phpt | 7 function test2() { return 42; } 10 var_dump(test2(...)); 20 string(5) "test2"
|
/PHP-8.4/ext/soap/tests/ |
H A D | gh16318.phpt | 13 $test2 = []; 14 $test2["a"] = "a"; 15 $test2[] =& $test2; 25 foreach ([$test1, $test2] as $test) {
|
/PHP-8.4/ext/skeleton/tests/ |
H A D | 003.phpt | 2 test2() Basic test 7 var_dump(test2()); 8 var_dump(test2('PHP'));
|
/PHP-8.4/ext/standard/tests/array/ |
H A D | 004.phpt | 10 5=>'test2', 30 string(5) "test2" 42 string(5) "test2" 54 string(5) "test2"
|
/PHP-8.4/Zend/tests/arg_unpack/ |
H A D | by_ref.phpt | 24 function test2($val1, &$ref1, $val2, &$ref2) { 30 test2(...$array); 40 test2($a, ...$array); 43 test2($a, $b, ...$array); 46 test2($a, $b, $c, ...$array); 49 test2($a, $b, $c, $d, ...$array);
|
H A D | basic.phpt | 10 function test2($arg1, $arg2, $arg3 = null) { 36 test2(...[1, 2]); 37 test2(...[1, 2, 3]); 38 test2(...[1], ...[], ...[], ...[2, 3], ...[4, 5]);
|
/PHP-8.4/Zend/tests/attributes/deprecated/functions/ |
H A D | 001.phpt | 11 function test2() { 20 function test2() { 41 test2(); 46 $cls->test2(); 60 Deprecated: Function test2() is deprecated, use test() instead in %s on line %d 66 Deprecated: Method Clazz::test2() is deprecated, use test() instead in %s
|
/PHP-8.4/ext/dom/tests/modern/css_selectors/ |
H A D | id.phpt | 14 <test id="test2"/> 22 test_helper($dom, '#test2'); 31 --- Selector: #test2 --- 32 <test id="test2"/>
|
/PHP-8.4/ext/simplexml/tests/ |
H A D | bug75245.phpt | 7 var_dump(simplexml_load_string('<test1><test2> </test2><test3></test3></test1>')); 11 ["test2"]=>
|
/PHP-8.4/ext/filter/tests/ |
H A D | 036.phpt | 12 $data["test2"] = &$var; 16 $args["test2"] = FILTER_VALIDATE_INT; 29 ["test2"]=> 35 ["test2"]=>
|
/PHP-8.4/ext/dom/tests/modern/token_list/ |
H A D | remove.phpt | 8 $dom = DOM\XMLDocument::createFromString('<root class="test1 test2"/>'); 20 $list->remove('test2'); 32 <root class="test2"/> 34 <root class="test2"/>
|
/PHP-8.4/ext/dom/tests/ |
H A D | canonicalization.phpt | 12 <bar><test2 /></bar> 54 <bar><test2></test2></bar> 62 <bar><test2></test2></bar> 70 <bar><test2></test2></bar> 78 <bar><test2></test2></bar> 86 <bar><test2></test2></bar> 97 <bar><test2></test2></bar>
|