Home
last modified time | relevance | path

Searched refs:test2 (Results 1 – 25 of 249) sorted by relevance

12345678910

/php-src/ext/xsl/tests/
H A Dbug70078.phpt21 return 'test2';
49test2</node><node>test2</node><node>test2</node><node>test2</node><node>test2</node><node>test2</n…
/php-src/tests/classes/
H A Dtostring_001.phpt10 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-src/ext/dom/tests/bug79701/
H A Dset_attribute_xml.phpt19 $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 Did_property.phpt10 <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 Dset_attr_value.phpt12 <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-src/ext/standard/tests/general_functions/
H A Dcall_user_func_return.phpt15 $t2 = 'test2';
17 function & test2($arg1, $arg2)
31 test('test2');
40 string(5) "test2"
42 string(5) "test2"
/php-src/Zend/tests/variadic/
H A Dbasic.phpt14 function test2($arg1, $arg2, ...$args) {
18 test2(1, 2);
19 test2(1, 2, 3);
20 test2(1, 2, 3, 4, 5);
/php-src/ext/xmlwriter/tests/
H A Dbug79344.phpt13 $writer->startAttributeNS(null, 'test2', null);
14 $writer->text('test2');
21 <foo test1="test1" test2="test2"/>
/php-src/ext/json/tests/
H A Djson_validate_001.phpt15 …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-src/Zend/tests/named_params/
H A Dunpack_and_named_1.phpt13 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-src/Zend/tests/
H A Dhalt_compiler2.phpt8 $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 Dbug24436.phpt10 if (!isset($this->test[0][0])) { print "test2\n";}
12 if (!isset($this->test)) { print "test2\n";}
20 test2
22 test2
H A Dbug30140.phpt7 public static $test2 = array();
15 A::$test2 = "y";
18 var_dump(A::$test2);
21 var_dump(B::$test2);
H A Dfirst_class_callable_optimization.phpt7 function test2() { return 42; }
10 var_dump(test2(...));
20 string(5) "test2"
H A Dbug39721.phpt5 class test2 {
15 $foo = new test2();
18 class test2_child extends test2 {
/php-src/ext/skeleton/tests/
H A D003.phpt2 test2() Basic test
7 var_dump(test2());
8 var_dump(test2('PHP'));
/php-src/ext/standard/tests/array/
H A D004.phpt10 5=>'test2',
30 string(5) "test2"
42 string(5) "test2"
54 string(5) "test2"
/php-src/Zend/tests/arg_unpack/
H A Dby_ref.phpt24 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 Dbasic.phpt10 function test2($arg1, $arg2, $arg3 = null) {
36 test2(...[1, 2]);
37 test2(...[1, 2, 3]);
38 test2(...[1], ...[], ...[], ...[2, 3], ...[4, 5]);
/php-src/Zend/tests/attributes/deprecated/functions/
H A D001.phpt11 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-src/ext/dom/tests/modern/css_selectors/
H A Did.phpt14 <test id="test2"/>
22 test_helper($dom, '#test2');
31 --- Selector: #test2 ---
32 <test id="test2"/>
/php-src/ext/simplexml/tests/
H A Dbug75245.phpt7 var_dump(simplexml_load_string('<test1><test2> </test2><test3></test3></test1>'));
11 ["test2"]=>
/php-src/ext/filter/tests/
H A D036.phpt12 $data["test2"] = &$var;
16 $args["test2"] = FILTER_VALIDATE_INT;
29 ["test2"]=>
35 ["test2"]=>
/php-src/ext/dom/tests/modern/token_list/
H A Dremove.phpt8 $dom = DOM\XMLDocument::createFromString('<root class="test1 test2"/>');
20 $list->remove('test2');
32 <root class="test2"/>
34 <root class="test2"/>
/php-src/ext/dom/tests/
H A Dcanonicalization.phpt12 <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>

Completed in 21 milliseconds

12345678910