Searched refs:test1 (Results 1 – 25 of 152) sorted by relevance
1234567
/PHP-8.4/ext/dom/tests/bug79701/ |
H A D | id_property.phpt | 9 <test1/> 15 $test2 = $test1->nextElementSibling; 23 echo "--- After setting test1 ---\n"; 24 $test1->id = "x"; 27 $test1->id = "y"; 33 $test1->id = "x"; 44 --- After setting test1 --- 45 string(5) "test1" 46 --- After resetting test1 --- 50 --- After resetting test1 --- [all …]
|
H A D | set_attribute_xml.phpt | 81 string(5) "test1" 84 string(5) "test1" 92 string(5) "test1" 98 string(5) "test1" 101 string(5) "test1" 109 string(5) "test1" 115 string(5) "test1" 118 string(5) "test1" 126 string(5) "test1" 132 string(5) "test1" [all …]
|
H A D | set_attr_value.phpt | 11 <test1 xml:id="x"/> 16 $test1 = $dom->getElementById('x'); 19 var_dump($test1?->nodeName); 22 $test1->getAttributeNode('xml:id')->$property = "y"; 33 string(5) "test1" 36 string(5) "test1" 38 string(5) "test1" 40 string(5) "test1" 43 string(5) "test1" 45 string(5) "test1"
|
H A D | swap.phpt | 10 <test1 xml:id="x"/> 15 $test1 = $dom->getElementById('x'); 29 $dom->documentElement->appendChild($test1); 32 $test1->setAttribute('xml:id', 'y'); 37 string(5) "test1" 39 string(5) "test1" 45 string(5) "test1"
|
/PHP-8.4/Zend/tests/ |
H A D | bug24436.phpt | 9 if (empty($this->test[0][0])) { print "test1\n";} 11 if (empty($this->test)) { print "test1\n";} 16 $test1 = new test(); 19 test1 21 test1
|
H A D | bug62763.phpt | 5 class test1 { 14 class test2 extends test1 { 19 new test1; 23 test1::shutdowntest2::__destruct
|
H A D | 003.phpt | 6 function test1() { 18 test1(); 19 test1(10); 28 call_user_func("test1"); 37 static function test1($a) { 42 test::test1(1);
|
H A D | bug30140.phpt | 6 public static $test1 = true; 14 A::$test1 = "x"; 17 var_dump(A::$test1); 20 var_dump(B::$test1);
|
H A D | 001.phpt | 6 function test1() { 18 test1(); 28 call_user_func("test1"); 37 static function test1($a) { 42 test::test1(1);
|
H A D | first_class_callable_optimization.phpt | 6 function test1() {} 9 var_dump(test1(...)); 16 string(5) "test1"
|
/PHP-8.4/ext/standard/tests/general_functions/ |
H A D | call_user_func_return.phpt | 6 $t1 = 'test1'; 8 function test1($arg1, $arg2) 30 test('test1'); 36 string(5) "test1" 38 string(5) "test1"
|
H A D | bug35229.phpt | 12 eval('class test1 extends test2 {}'); 14 test1::use_stack( 21 call_user_func(array('test1', 'use_stack'),
|
/PHP-8.4/Zend/tests/return_types/ |
H A D | 001.phpt | 5 function test1() : array { 8 test1(); 11 Fatal error: Uncaught TypeError: test1(): Return value must be of type array, none returned in %s:%d 13 #0 %s(%d): test1()
|
H A D | 003.phpt | 5 function test1() : array { 8 test1(); 11 Fatal error: Uncaught TypeError: test1(): Return value must be of type array, int returned in %s:%d 13 #0 %s(%d): test1()
|
H A D | 002.phpt | 5 function test1() : array { 9 test1(); 12 Fatal error: Uncaught TypeError: test1(): Return value must be of type array, null returned in %s:%d 14 #0 %s(%d): test1()
|
H A D | 004.phpt | 5 function test1() : array { 9 test1(); 12 Fatal error: Uncaught TypeError: test1(): Return value must be of type array, string returned in %s… 14 #0 %s(%d): test1()
|
/PHP-8.4/Zend/tests/variadic/ |
H A D | basic.phpt | 6 function test1(... $args) { 10 test1(); 11 test1(1); 12 test1(1, 2, 3);
|
/PHP-8.4/ext/xmlwriter/tests/ |
H A D | bug79344.phpt | 12 $writer->writeAttributeNS(null, 'test1', null, 'test1'); 21 <foo test1="test1" test2="test2"/>
|
/PHP-8.4/ext/standard/tests/file/ |
H A D | include_userstream_003.phpt | 17 $this->stream = fopen("test1://".substr($path, 8), $mode); 91 stream_register_wrapper("test1", "test", STREAM_IS_URL); 93 echo file_get_contents("test1://hello"),"\n"; 94 include "test1://hello"; 106 Warning: include(): test1:// wrapper is disabled in the server configuration by allow_url_fopen=0 i… 108 Warning: include(test1://hello): Failed to open stream: no suitable wrapper could be found in %s on… 110 Warning: include(): Failed opening 'test1://hello' for inclusion (include_path='%s') in %s on line … 112 Warning: fopen(): test1:// wrapper is disabled in the server configuration by allow_url_fopen=0 in … 114 Warning: fopen(test1://hello): Failed to open stream: no suitable wrapper could be found in %s on l… 119 Warning: fopen(): test1:// wrapper is disabled in the server configuration by allow_url_fopen=0 in … [all …]
|
/PHP-8.4/ext/reflection/tests/ |
H A D | new_in_constexpr.phpt | 6 function test1() { 11 $rf = new ReflectionFunction('test1'); 13 test1(); 16 var_dump($s['x'] === test1());
|
/PHP-8.4/ext/standard/tests/strings/ |
H A D | bug70667.phpt | 5 $a = array("{{language_id}}"=>"255", "{{partner_name}}"=>"test1"); 6 var_dump(strtr("Sign in to test1", $a)); 9 string(16) "Sign in to test1"
|
/PHP-8.4/ext/dom/tests/modern/css_selectors/ |
H A D | id.phpt | 12 <test id="test1"/> 21 test_helper($dom, '#test1'); 29 --- Selector: #test1 --- 30 <test id="test1"/>
|
/PHP-8.4/ext/filter/tests/ |
H A D | 036.phpt | 11 $data["test1"] = 1; 15 $args["test1"] = FILTER_VALIDATE_INT; 27 ["test1"]=> 33 ["test1"]=>
|
/PHP-8.4/ext/spl/tests/ |
H A D | bug50579.phpt | 9 'test1'=>'test888', 35 test1=>[test888] 37 test1=>888 39 test1=>[888]
|
/PHP-8.4/ext/dom/tests/ |
H A D | canonicalization.phpt | 11 <bar><test1 /></bar> 53 <bar><test1></test1></bar> 61 <bar><test1></test1></bar> 69 <bar><test1></test1></bar> 77 <bar><test1></test1></bar> 85 <bar><test1></test1></bar> 96 <bar><test1></test1></bar>
|
Completed in 25 milliseconds
1234567