PHP ReflectionClass 是单例吗?
我需要从代码中的几个不同位置获取类的 ReflectionClass 实例。出于性能原因,我打算自己管理它的单例实例。然而,我认为 PHP 可能已经做到了这一点。
如果您多次为同一个类新建 ReflectionClass,PHP 是否会为您管理单例或执行任何其他类型的缓存?
I have a need to get the ReflectionClass instance of a class from a few different places in my code. I was going to manage a singleton instance of it myself for performance reasons. However, I thought PHP may already do this.
If you new up a ReflectionClass for the same class multiple times, does PHP manage the singleton for you or do any other kind of caching?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,reflectionClass 不是单例;如果您尝试为同一类/对象实例化多个 ReflectionClass 实例,它也没有任何“内置”智能来充当单例。 ReflectionClass 的每个实例都是完全自主的
No, reflectionClass is not a singleton; nor does it have any intelligence "built in" to act as a singleton if you try to instantiate multiple reflectionClass instances for the same class/object. Each instance of reflectionClass is totally autonomous