扩展MySQLi类

时间:2009-11-30 15:19:33

标签: php class mysqli

我希望能够创建扩展MySQLi类的类来执行所有SQL查询。

$mysql = new mysqli('localhost', 'root', 'password', 'database') or die('error connecting to the database');

我不知道如何在没有全局化$ mysql对象的情况下执行此操作,以便在我的其他方法或类中使用。

class Blog {

public function comment() {
    global $mysql;

    //rest here
}

}

任何帮助都将不胜感激。

感谢。

5 个答案:

答案 0 :(得分:12)

我正在做类似的事情。我对这个封装数据库登录的单例类感到高兴。

<?php
class db extends mysqli
{
    protected static $instance;
    protected static $options = array();

    private function __construct() {
        $o = self::$options;

        // turn of error reporting
        mysqli_report(MYSQLI_REPORT_OFF);

        // connect to database
        @parent::__construct(isset($o['host'])   ? $o['host']   : 'localhost',
                             isset($o['user'])   ? $o['user']   : 'root',
                             isset($o['pass'])   ? $o['pass']   : '',
                             isset($o['dbname']) ? $o['dbname'] : 'world',
                             isset($o['port'])   ? $o['port']   : 3306,
                             isset($o['sock'])   ? $o['sock']   : false );

        // check if a connection established
        if( mysqli_connect_errno() ) {
            throw new exception(mysqli_connect_error(), mysqli_connect_errno()); 
        }
    }

    public static function getInstance() {
        if( !self::$instance ) {
            self::$instance = new self(); 
        }
        return self::$instance;
    }

    public static function setOptions( array $opt ) {
        self::$options = array_merge(self::$options, $opt);
    }

    public function query($query) {
        if( !$this->real_query($query) ) {
            throw new exception( $this->error, $this->errno );
        }

        $result = new mysqli_result($this);
        return $result;
    }

    public function prepare($query) {
        $stmt = new mysqli_stmt($this, $query);
        return $stmt;
    }    
}

要使用你可以有类似的东西:

<?php
require "db.class.php";

$sql = db::getInstance();

$result = $sql->query("select * from city");

/* Fetch the results of the query */ 
while( $row = $result->fetch_assoc() ){ 
    printf("%s (%s)\n", $row['Name'], $row['Population']); 
} 
?>

答案 1 :(得分:3)

我的建议是创建一个Singleton DataAccess类,在全局配置文件中实例化该类,并在您的Blog类中调用它,如$query = DataAccess::query("SELECT * FROM blog WHERE id = ".$id)

查看Singleton模式,它是一个非常容易理解的设计模式。适合这种情况。

您的DataAccess类可以有多种方法,例如queryfetchAssocnumRowscheckUniqueValuetransactionStarttransactionCommit,{{1这些函数也可以设置为由DataAccess类实现的接口。这样,您可以轻松地为多个数据库管理系统扩展DataAccess类。

上面几乎描述了我的DataAccess模型。

答案 2 :(得分:1)

您可以将PHP的extends关键字用于任何其他类:

class MyCustomSql extends mysqli {

    public function __construct($host, $user, $password, $database) {
        parent::__construct($host, $user, $password, $database);
    }

    public function someOtherMethod() {
    }
}

$sql = new MyCustomSql('localhost', 'root', 'password', 'database') or die('Cannot connect!');

或更好地使用对象聚合而不是继承:

class MySqlManipulator {

    private $db;

    public function __construct($host, $user, $password, $database) {
        $this->db   = new mysqli($host, $user, $password, $database);
    }

    public function someOtherMethod() {
        return $this->db->query("SELECT * FROM blah_blah");
    }
}

$mysqlmanipulator = new MySqlManipulator('localhost', 'root', 'password', 'database') or die('Cannot connect!');

答案 3 :(得分:0)

我的标准方法是创建一个充当数据库访问器的singleton类,以及一个需要这种访问的所有内容继承自的基类。

所以:

class Base {

  protected $db;

  function __construct(){
    $this->db= MyDBSingleton::get_link();
    //any other "global" vars you might want 
  }

}


class myClass extends Base {

  function __construct($var) {
     parent::__construct();// runs Base constructor
     $this->init($var);
  }

  function init($id) {
    $id=(int) $id;
    $this->db->query("SELECT * FROM mytable WHERE id=$id");
    //etc.
  }
}

答案 4 :(得分:0)

查看PDO,如果查询失败,会抛出异常以便捕获。它被广泛使用和测试,因此在使用它时不应该找到现有解决方案。

将其注入您的博客课程:

class Blog {

    private $_db;

    public function __construct(PDO $db) {
        $this->_db = $db
    }

    public function comment() {
        return $this->_db->query(/*something*/);
    }

}