gpt4 book ai didi

php - 从表中获取 PDO lastInsertId()

转载 作者:行者123 更新时间:2023-11-30 22:32:53 28 4
gpt4 key购买 nike

是否可以从方法中获取 lastInsertId(),如果可能的话,是否可以从特定表中获取值?

我尝试使用的方法在我的db.class.php

public function getLastID(){ 
$dbh = $this->db_connect();
if($dbh){
try{
$lastId = $dbh->lastInsertId();
return $lastId;
}
catch(PDOException $err){
return $err->getMessage();
}
}
else{
return false;
}
}

当我访问方法时,echo $db->getLastID();,我得到的值是0

最佳答案

return $db->lastInsertId('column');

$db->getDbh()->lastInsertId();

stackoverflow.com/questions/10809752/how-to-use-pdolastinsertid

关于php - 从表中获取 PDO lastInsertId(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33387494/

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