如何在 PHP 中使用接口和魔术方法
我想使用接口,但我的一些实现依赖于魔术方法,例如 __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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将实现中的所有接口方法分派给
__call()
。它涉及大量蹩脚的剪切和粘贴工作,但它确实有效。至少每个方法的主体可以是相同的。 ;)
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.At least the body of each method can be identical. ;)