Home
last modified time | relevance | path

Searched refs:test (Results 26 – 50 of 5226) sorted by path

12345678910>>...210

/PHP-7.2/Zend/tests/
H A D008.phpt14 var_dump(define("test const", 3));
15 var_dump(define("test const", 3));
16 var_dump(define("test", array(1)));
21 var_dump(constant("test const"));
42 Notice: Constant test const already defined in %s on line %d
H A D010.phpt7 function test();
11 function test() {
25 $foo->test();
26 $bar->test();
H A D011.phpt19 function test() {
34 var_dump(property_exists("","test"));
44 var_dump(property_exists(array(),"test"));
45 var_dump(property_exists(1,"test"));
46 var_dump(property_exists(true,"test"));
51 $bar->test();
H A D012.phpt13 var_dump(class_exists("test", false));
H A D013.phpt13 var_dump(interface_exists("test", false));
H A D017.phpt19 define("USER_CONSTANT", "test");
26 function test () {
H A D018.phpt15 define("TEST_CONST2", "test");
33 string(4) "test"
H A D023.phpt8 print $$b('test');
19 public function test() {
25 function test() {
29 $a = 'test';
H A D026.phpt11 $test = new foo;
13 $test->a()->a;
16 $test->a()->a = 1;
H A D030.phpt7 public $test = 0;
29 $test = new foo;
30 $test->bar();
H A D031.phpt6 function test($var) { }
7 test($arr[]);
H A D032.phpt6 function test(&$var) { }
7 test($arr[]);
H A D036.phpt6 $test[function(){}] = 1;
H A Daccess_modifiers_001.phpt6 class test {
H A Daccess_modifiers_002.phpt6 class test {
H A Daccess_modifiers_003.phpt6 final final class test {
H A Daccess_modifiers_004.phpt6 class test {
H A Daccess_modifiers_005.phpt6 class test {
H A Daccess_modifiers_006.phpt6 class test {
H A Daccess_modifiers_007.phpt6 class test {
H A Daccess_modifiers_008.phpt15 static public function test() {echo B1::f();}
17 B2::test();
H A Daccess_modifiers_009.phpt15 static public function test() {
20 B2::test();
H A Daccess_modifiers_010.phpt13 public function test() {
23 $this->test();
33 #0 %s(%d): a->test()
H A Dand_001.phpt11 $s = "test";
16 $s = "test long";
21 $s = "test";
26 $s = "test";
H A Danonymous_func_002.phpt6 $test = create_function('$v', 'return $v;');
10 var_dump($arr[$test(1)]);
11 var_dump($arr[$test(0)]() == $arr);

Completed in 35 milliseconds

12345678910>>...210