如何在 PHP 中使用接口和魔术方法

发布于 2024-10-17 02:23:04 字数 131 浏览 1 评论 0原文

我想使用接口,但我的一些实现依赖于魔术方法,例如 __invoke 和 __call。我必须从接口中删除可能被神奇调用(在任何实现中)的方法的签名。这导致了反模式空接口(是的,我刚刚编造的)。

如何在 PHP 中结合接口和魔术方法?

I want to use interfaces, but some of my implementations rely on magic methods such as __invoke and __call. I have to remove signatures of methods that may be invoked magically (in any implementation) from the interface. Which leads to the anti pattern Empty Interface (Yeah, I just made that up).

How do you combine interfaces and magic methods in PHP?

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

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

发布评论

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

评论(1

逆流 2024-10-24 02:23:05

将实现中的所有接口方法分派给 __call()。它涉及大量蹩脚的剪切和粘贴工作,但它确实有效。

interface Adder {
    public function add($x, $y);
}

class Calculator implements Adder {
    public function add($x, $y) {
        return $this->__call(__FUNCTION__, func_get_args());
    }

    public function __call($method, $args) {
        ...
    }
}

至少每个方法的主体可以是相同的。 ;)

Have all of the interface methods in your implementations dispatch to __call(). It involves a lot of crummy cut-and-paste work, but it works.

interface Adder {
    public function add($x, $y);
}

class Calculator implements Adder {
    public function add($x, $y) {
        return $this->__call(__FUNCTION__, func_get_args());
    }

    public function __call($method, $args) {
        ...
    }
}

At least the body of each method can be identical. ;)

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