简体   繁体   English

使用 PDO 返回最后一个插入 ID

[英]Return Last Insert ID with PDO

I have this Class and would like to extend to return the ID of the last inserted Row but I keep getting this error:我有这个类并想扩展以返回最后插入的行的 ID,但我不断收到此错误:

Fatal error: Call to undefined method PDOStatement :: lastInsertId () on line 49致命错误:在第 49 行调用未定义的方法 PDOStatement::lastInsertId()

My Code:我的代码:

class DB {
public static $instance = null;

private     $_pdo = null,
            $_query = null,
            $_error = false,
            $_results = null,
            $_count = 0,
            $_lastID = 0;

private function __construct() {
    try {
        $this->_pdo = new PDO('mysql:host=' . Config::get('mysql/host'). ';
                dbname=' . Config::get('mysql/db') . ';
                charset=utf8',
                Config::get('mysql/username'),
                Config::get('mysql/password')
            );
    } catch(PDOExeption $e) {
        die($e->getMessage());
    }
}

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

public function query($sql, $params = array()) {

    $this->_error = false;

    if($this->_query = $this->_pdo->prepare($sql)) {
        $x = 1;
        if(count($params)) {
            foreach($params as $param) {
                $this->_query->bindValue($x, $param);
                $x++;
            }
        }

        if($this->_query->execute()) {
            $this->_results = $this->_query->fetchAll(PDO::FETCH_OBJ);
            $this->_count = $this->_query->rowCount();
            $this->_lastID = $this->_query->lastInsertId(); // <- ERRO
        } else {
            $this->_error = true;
        }
    }

    return $this;
}

According to the PHP docs , lastInsertId is a method of the pdo object, not the stmt object (which you are referencing via $this->_query).根据PHP 文档,lastInsertId 是 pdo 对象的方法,而不是 stmt 对象(您通过 $this->_query 引用)。 Try this:试试这个:

$this->_lastID = $this->_pdo->lastInsertId();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM