????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.191.251.36 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/Zend/tests/ |
Upload File : |
--TEST-- Bug #29210 (Function is_callable does not support private and protected methods) --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(); ?> --EXPECTF-- 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