execute(arra-6ren">
gpt4 book ai didi

php - lastInsertId() 返回空字符串

转载 作者:搜寻专家 更新时间:2023-10-30 20:02:44 27 4
gpt4 key购买 nike

为什么?

try{

$st = $this->prepare("INSERT INTO thetable (a,b) VALUES (?,?)");
$st->execute(array(5,5));

$id = $this->lastInsertId();

echo $id; // nothing
echo gettype($id); // string

return $id; // and I get NULL returned, this is even weirder...

}catch(PDOException $e){
die($e);
return false;
}

该表有一个自动递增的 id 列。为什么我得不到 id 值?

最佳答案

好的,刚找到原因。我将此作为答案发布,因为很可能会有其他人遇到同样的问题 :D

因此,如果您在 PDO::commit() 之后调用它,PDO::lastInsertId(); 将为空,我这样做是因为我使用的是原子事务。需要在execute()之后调用...

请注意,我在上面的代码中没有 beginTransaction 和 commit() 所以我问题中的代码实际上是正确的,问题出在家里:)

关于php - lastInsertId() 返回空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8391292/

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