/PHP-8.3/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.3/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.3/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.3/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.3/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.3/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.3/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.3/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"
|
H A D | errmsg_025.phpt | 10 interface test2 { 14 class test implements test1, test2 { 20 Fatal error: Class test inherits both test1::FOO and test2::FOO, which is ambiguous in %s on line %d
|
H A D | bug39721.phpt | 5 class test2 { 15 $foo = new test2(); 18 class test2_child extends test2 {
|
/PHP-8.3/ext/pdo_mysql/tests/ |
H A D | pecl_bug_5780.phpt | 18 $db->exec("CREATE TABLE test2 (login varchar(32) NOT NULL, password varchar(64) NOT NULL)"); 19 $db->exec("INSERT INTO test2 (login, password) VALUES ('testing', 'testing')"); 20 $db->exec("INSERT INTO test2 (login, password) VALUES ('test2', 'testpw2')"); 23 $authstmt = $db->prepare('SELECT * FROM test2 WHERE login = :varlog AND password = :varpass'); 26 @var_dump($logstmt->execute(array(':var1' => 'test1', ':var2' => 'test2'))); 36 $db->exec('DROP TABLE IF EXISTS test2');
|
/PHP-8.3/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.3/ext/skeleton/tests/ |
H A D | 003.phpt | 2 test2() Basic test 7 var_dump(test2()); 8 var_dump(test2('PHP'));
|
/PHP-8.3/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.3/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.3/ext/mysqli/tests/ |
H A D | bug62885.phpt | 14 $test1 = mysqli_poll($test2, $test3, $tablica, 0); 19 $test2 = array(); 20 $test2 = array(); 22 $test1 = mysqli_poll($test2, $test3, $tablica, 0);
|
/PHP-8.3/ext/simplexml/tests/ |
H A D | bug75245.phpt | 7 var_dump(simplexml_load_string('<test1><test2> </test2><test3></test3></test1>')); 11 ["test2"]=>
|
/PHP-8.3/ext/filter/tests/ |
H A D | 036.phpt | 12 $data["test2"] = &$var; 16 $args["test2"] = FILTER_VALIDATE_INT; 29 ["test2"]=> 35 ["test2"]=>
|
/PHP-8.3/ext/pdo/tests/ |
H A D | pdo_023.phpt | 24 $this->test2 = 2; 25 $this->test2 = 22; 47 $this->test2 = 2; 49 var_dump($this->test2); 50 $this->test2 = 22; 86 ["test2"]=> 105 ["test2"]=>
|
/PHP-8.3/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>
|
/PHP-8.3/ext/standard/tests/url/ |
H A D | parse_url_basic_008.phpt | 59 --> http://www.php.net:80/index.php?test=1&test2=char&test3=mixesCI : string(31) "test=1&test2=ch… 60 --> www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(31) "test=… 61 …//secret@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(31) … 62 …p://secret:@www.php.net/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(31) … 63 …:hideout@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(31) … 64 …ret:hideout@www.php.net/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(31) … 65 …@hideout@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(31) … 66 …:hid:out@www.php.net:80/index.php?test=1&test2=char&test3=mixesCI#some_page_ref123 : string(31) …
|