php 检查抽象方法是否存在
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以上已经解决了我的问题:)希望它能帮助那里的人。
the above has solved my problem :) hope it helps someone out there.