gpt4 book ai didi

php - 使用 PDO 返回上次插入 ID

转载 作者:太空宇宙 更新时间:2023-11-03 12:10:32 25 4
gpt4 key购买 nike

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

fatal error :在第 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;
}

最佳答案

根据PHP docs ,lastInsertId 是 pdo 对象的方法,而不是 stmt 对象(您通过 $this->_query 引用的对象)。试试这个:

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

关于php - 使用 PDO 返回上次插入 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24421756/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com