ID: 29210 Updated by: [EMAIL PROTECTED] Reported By: freeload at softhome dot net Status: Open Bug Type: Unknown/Other Function Operating System: Windows XP PHP Version: 5.0.0 New Comment:
This patch should fix the bug: http://tony2001.phpclub.net/dev/tmp/is_callable.diff test file: http://tony2001.phpclub.net/dev/tmp/is_callable.phpt Previous Comments: ------------------------------------------------------------------------ [2004-07-16 15:07:46] freeload at softhome dot net Description: ------------ The built in function is_callable, does not return false, on unreachable functions like protected and private ones. Reproduce code: --------------- <?php class test_class { private function test_func1(){} protected function test_func2(){} } $object = new test_class; var_dump(is_callable(array($object,'test_func1'))); echo chr(10); var_dump(is_callable(array($object,'test_func2'))); ?> Expected result: ---------------- bool(false) bool(false) Actual result: -------------- bool(true) bool(true) ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=29210&edit=1
