doubu5035 2013-10-14 16:48 采纳率: 100%
浏览 41
已采纳

PDO:在哪里声明数据库连接?

I've just started using PDO and was wondering how best to declare the database connection?

Would it best practice to create a script as follows, called config.php for example

config.php

<?php
$dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass, array(
    PDO::ATTR_PERSISTENT => true
));
?>

Then have example.class.php

<?php
include config.php;
class Example {
    public function fetch() {
          $data = $dbh->query('SELECT * FROM myTable WHERE name = ' . $conn->quote($name));
          // do stuff
    }

}
?>

And do this for all my classes? Or would this make multiple connections? I want to have as few connections as possible.

  • 写回答

3条回答 默认 最新

  • dongshang1979 2013-10-14 16:54
    关注

    You're close but your fetch function won't work because $dbh is outside its scope.

    You could globalize it but a better solution is to pass your handler to your class upon instantiation

    class Example {
        /** @var \PDO */
        protected $pdo;
    
        public function __construct(\PDO $pdo) {
             $this->pdo = $pdo;
        }
    }
    $class = new Example($dbh);
    

    This is a best practice. This way the logistics of setting up and naming your db pointer are irrelevant. Your class defines how it's going to receive it and you use the instance of the pointer you were passed.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据