在php中使用单例类建立数据库连接
任何人都可以指导我使用示例代码在 php 中使用单例类建立数据库连接。
Can anybody please guide me with a sample code to establish a database connection in php using singleton class.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
也许是这样的?非常基础,但应该为您提供一个起点。
Something like that perhaps? Very basic, but should give you a starting point.
这就是单例模式的样子:
现在您可以在其中放置随机函数和参数来处理您的数据库内容。我希望这能回答你的问题。
That's how a singleton-pattern looks like:
Now you can put random functions and parameters in there that handle your DB-stuff. I hope that answers your question.
有关如何实现单例模式的示例,请参阅手册: http:// /www.php.net/manual/en/language.oop5.patterns.php
然后只需在类构造函数中建立数据库连接即可。
See the manual for an example on how to implement the Singleton pattern: http://www.php.net/manual/en/language.oop5.patterns.php
Then just establish the database connection in your class constructor.
我用这样的东西:
I use something like this:
我正在使用类似下面的东西
I am using something like below