Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/248.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 返回带有PDO的最后一个插入ID_Php_Mysql_Oop_Pdo - Fatal编程技术网

Php 返回带有PDO的最后一个插入ID

Php 返回带有PDO的最后一个插入ID,php,mysql,oop,pdo,Php,Mysql,Oop,Pdo,我有这个类,并希望扩展以返回最后插入行的ID,但我一直收到以下错误: 致命错误:在第49行调用未定义的方法PDOStatement::lastInsertId() 我的代码: class DB { public static $instance = null; private $_pdo = null, $_query = null, $_error = false, $_results = null,

我有这个类,并希望扩展以返回最后插入行的ID,但我一直收到以下错误:

致命错误:在第49行调用未定义的方法PDOStatement::lastInsertId()

我的代码:

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;
}
classdb{
公共静态$instance=null;
私有$_pdo=null,
$\u query=null,
$\u错误=false,
$\u results=null,
$\计数=0,
$\u lastID=0;
私有函数_u构造(){
试一试{
$this->_pdo=new pdo('mysql:host='.Config::get('mysql/host');
dbname='.Config::get('mysql/db');
字符集=utf8',
Config::get('mysql/username'),
Config::get('mysql/password')
);
}渔获物(豁免$e){
死亡($e->getMessage());
}
}
公共静态函数getInstance(){
如果(!isset(self::$instance)){
self::$instance=new DB();
}
返回self::$instance;
}
公共函数查询($sql,$params=array()){
$this->_error=false;
如果($this->_query=$this->_pdo->prepare($sql)){
$x=1;
如果(计数($params)){
foreach($params作为$param){
$this->_query->bindValue($x,$param);
$x++;
}
}
如果($this->\u query->execute()){
$this->\u results=$this->\u query->fetchAll(PDO::FETCH\u OBJ);
$this->_count=$this->_query->rowCount();
$this->\u lastID=$this->\u query->lastInsertId();//\u error=true;
}
}
退还$this;
}
根据,lastInsertId是pdo对象的方法,而不是stmt对象(您通过$this->\u查询引用了stmt对象)。请尝试以下操作:

$this->_lastID = $this->_pdo->lastInsertId();
根据,lastInsertId是pdo对象的方法,而不是stmt对象(您通过$this->\u查询引用了stmt对象)。请尝试以下操作:

$this->_lastID = $this->_pdo->lastInsertId();
根据,lastInsertId是pdo对象的方法,而不是stmt对象(您通过$this->\u查询引用了stmt对象)。请尝试以下操作:

$this->_lastID = $this->_pdo->lastInsertId();
根据,lastInsertId是pdo对象的方法,而不是stmt对象(您通过$this->\u查询引用了stmt对象)。请尝试以下操作:

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