在类之外使用 php 的魔术方法
是否可以在定义的类之外使用 PHP 魔术方法(特别是 __get())?
我想在配置文件中使用它来快速加载。配置文件有一个数组 $config,其中包含许多键。因此,我想重写 __get() 以返回数组中的键。
Is it possible to use PHP magic methods (specifically __get()) outside a defined class?
I'm wanting to use it in a configuration file for quick loading. The configuration file has a single array, $config, with many keys. Therefore, I'd like to override __get() to return the key in the array.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,但您可以编写一个读取配置文件的对象,并提供 __get 方法。
No, but you could write an object that reads the config file, and provides the __get method.