|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-11-08 16:13 UTC] laruence@php.net
-Status: Open
+Status: Not a bug
[2012-11-08 16:13 UTC] laruence@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 11:00:01 2025 UTC |
Description: ------------ When calling is_callible on a public function inherited from a parent, it will return false. Test script: --------------- class a { public function bla() {} } class b extends a { } $b = new b; var_dump(is_callable($b, 'bla')); Expected result: ---------------- bool(true) Actual result: -------------- bool(false)