PHP中使用PDO的方法
所以我找到了一个对我来说不错的方法: http:// /www.php.net/manual/en/class.pdo.php#97682
需要 PHP 5.3 但我的主机只支持 5.2 :(
那么我应该使用 PDO 的什么方法,它只在以下情况下连接到数据库需要吗? 并重用相同的连接?
So I've found a method which looked nice to me: http://www.php.net/manual/en/class.pdo.php#97682
Requires PHP 5.3 but my host only supports 5.2 :(
So what method should I use for PDO, where it only connects to the database when needed?
And reuses the same connection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用程序单例以提高可读性:
这简化了使用,例如:
Use a procedural singleton for readability:
This simplifies the use to for example:
您可以将单例与实例一起使用。 Database::getInstance() 创建、缓存并返回 PDO 对象
you can use singleton with instance. Database::getInstance() which creates, caches and returns PDO object