PHP 类可见性
我正在学习 PHP 课程。我确实有一点 C++ 的功底。
我的目标是在用户加载我的网站时实例化类,并能够在用户访问网站时使用这些类,然后销毁。
PHP 中有全局类吗?我可以在哪里实例化一个类,并使访问我网站的每个用户都获得该类中设置的值?例如页面标题、默认值、应用程序默认值、默认 MySQL 查询等?
我现在不是在使用框架,而是在尝试自己学习。
I am learning about PHP classes. I do have a bit of a C++ under my belt.
My goal here is to instantiate classes when a user loads my site and be able to use those classes while the users is on the site and then destroy.
Are there global classes in PHP? Where I could instantiate a class and have every users that hits my site get the values set in that class? Like page titles, default values, application defaults, default MySQL queries, etc?
I am not using a framework at this time, rather trying to learn myself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SPL 中有一些全局类。
但是,类实例的寿命不会比单个请求长,您必须为每个请求实例化/重新创建它们。
希望这有帮助...
There are some global classes within the SPL.
However, class instances do not live longer than a single request, you have to instantiate/recreate them for every request.
Hope this helps...