神奇的功能和继承

发布于 2024-08-06 02:18:11 字数 42 浏览 3 评论 0原文

我想知道是否可以创建一个扩展另一个魔法对象的魔法对象(使用 PHP)。

I would like to know if it's possible to create a magic object that extends another magic object, (with PHP).

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

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

发布评论

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

评论(1

绿萝 2024-08-13 02:18:11

我不完全确定你在问什么......你想显式调用父类的魔术方法吗?如果是这样,您可以使用类的 parent 引用:

class Object extends dbObj{
    // ...
    // this is what i'm assuming you're looking for:
    public function __call($method, $variables){
        return parent::__call($method, $variables);
    }
}

I'm not totally sure what you're asking... are you wanting to explicitly invoke the magic methods of the parent class? If so, you can use the class' parent reference:

class Object extends dbObj{
    // ...
    // this is what i'm assuming you're looking for:
    public function __call($method, $variables){
        return parent::__call($method, $variables);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文