PHP中使用PDO的方法

发布于 2024-09-19 08:34:00 字数 255 浏览 9 评论 0原文

所以我找到了一个对我来说不错的方法: 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 技术交流群。

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

发布评论

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

评论(3

夏天碎花小短裙 2024-09-26 08:34:00

使用程序单例以提高可读性:

 function db() {
      static $conn;
      if (!isset($conn)) {
           $conn = new PDO("sqlite:/tmp/db");
      }
      return $conn;
 }

这简化了使用,例如:

 $rows = db()->query("SELECT * FROM all")->fetchAll();

Use a procedural singleton for readability:

 function db() {
      static $conn;
      if (!isset($conn)) {
           $conn = new PDO("sqlite:/tmp/db");
      }
      return $conn;
 }

This simplifies the use to for example:

 $rows = db()->query("SELECT * FROM all")->fetchAll();
变身佩奇 2024-09-26 08:34:00

您可以将单例与实例一起使用。 Database::getInstance() 创建、缓存并返回 PDO 对象

you can use singleton with instance. Database::getInstance() which creates, caches and returns PDO object

神也荒唐 2024-09-26 08:34:00
class db{

   protected static $conn;
   public static function getInstance() {

      if (!isset(self::$conn)) {
           self::$conn = new PDO("sqlite:/tmp/db");
      }

      return self::$conn;
   }
 }

$rows = db::getInstance()->query("SELECT * FROM all")->fetchAll();
class db{

   protected static $conn;
   public static function getInstance() {

      if (!isset(self::$conn)) {
           self::$conn = new PDO("sqlite:/tmp/db");
      }

      return self::$conn;
   }
 }

$rows = db::getInstance()->query("SELECT * FROM all")->fetchAll();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文