php 检查抽象方法是否存在

发布于 2024-09-26 18:06:00 字数 276 浏览 1 评论 0原文

abstract class A{
   abstract test();
   function __construct (){
       //check if test method exists on B//
   }
}

class B extends A{

}

new B();

我的问题是...有没有办法检查test方法是否存在于class B上? 这样我就可以避免致命错误?

希望这是有道理的。

abstract class A{
   abstract test();
   function __construct (){
       //check if test method exists on B//
   }
}

class B extends A{

}

new B();

my question is ... is there a way to check if the test method exists on class B?
so I can avoid the fatal error ?

hope it makes sense.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久夏青 2024-10-03 18:06:00
method_exists(get_called_class(),'test');

以上已经解决了我的问题:)希望它能帮助那里的人。

method_exists(get_called_class(),'test');

the above has solved my problem :) hope it helps someone out there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文