PHP ReflectionClass 是单例吗?

发布于 2024-10-21 05:06:58 字数 152 浏览 1 评论 0原文

我需要从代码中的几个不同位置获取类的 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 技术交流群。

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

发布评论

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

评论(1

多孤肩上扛 2024-10-28 05:06:58

不,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

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