summaryrefslogtreecommitdiff
path: root/Zend/tests/bug29210.phpt
blob: 294685499c6d2f77595f3a3e4a96f41d59ed2d23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
--TEST--
Bug #29210 Function: is_callable - no support for private and protected classes 
--FILE--
<?php
class test_class {
   private function test_func1() {
   	 echo "test_func1\n";
   }
   protected function test_func2() {
   	 echo "test_func2\n";
   }
   static private function test_func3() {
   	 echo "test_func3\n";
   }
   static protected function test_func4() {
   	 echo "test_func4\n";
   }
   function test() {
     if (is_callable(array($this,'test_func1'))) {
	     $this->test_func1();
     } else {
       echo "test_func1 isn't callable from inside\n";
     }
     if (is_callable(array($this,'test_func2'))) {
	     $this->test_func2();
     } else {
       echo "test_func2 isn't callable from inside\n";
     }
     if (is_callable(array('test_class','test_func3'))) {
	     test_class::test_func3();
     } else {
       echo "test_func3 isn't callable from inside\n";
     }
     if (is_callable(array('test_class','test_func4'))) {
	     test_class::test_func4();
     } else {
       echo "test_func4 isn't callable from inside\n";
     }
   }
}

class foo extends test_class {
   function test() {
     if (is_callable(array($this,'test_func1'))) {
	     $this->test_func1();
     } else {
       echo "test_func1 isn't callable from child\n";
     }
     if (is_callable(array($this,'test_func2'))) {
	     $this->test_func2();
     } else {
       echo "test_func2 isn't callable from child\n";
     }
     if (is_callable(array('test_class','test_func3'))) {
	     test_class::test_func3();
     } else {
       echo "test_func3 isn't callable from child\n";
     }
     if (is_callable(array('test_class','test_func4'))) {
	     test_class::test_func4();
     } else {
       echo "test_func4 isn't callable from child\n";
     }
   }
}

$object = new test_class;
$object->test();
if (is_callable(array($object,'test_func1'))) {
	$object->test_func1();
} else {
  echo "test_func1 isn't callable from outside\n";
}
if (is_callable(array($object,'test_func2'))) {
	$object->test_func2();
} else {
  echo "test_func2 isn't callable from outside\n";
}
if (is_callable(array('test_class','test_func3'))) {
  test_class::test_func3();
} else {
  echo "test_func3 isn't callable from outside\n";
}
if (is_callable(array('test_class','test_func4'))) {
  test_class::test_func4();
} else {
  echo "test_func4 isn't callable from outside\n";
}
$object = new foo();
$object->test();
?>
--EXPECT--
test_func1
test_func2
test_func3
test_func4
test_func1 isn't callable from outside
test_func2 isn't callable from outside
test_func3 isn't callable from outside
test_func4 isn't callable from outside
test_func1 isn't callable from child
test_func2
test_func3 isn't callable from child
test_func4