PDO lastInsertId 问题,php
本文介绍了PDO lastInsertId 问题,php的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经尝试了很多方法来使用下面的代码(来自较大班级的片段)获取最后插入的 ID,现在我已经放弃了.
I have tried lots of ways to get the last inserted ID with the code below (snipplet from larger class) and now I have given up.
有谁知道如何让 PDO lastInsertId 工作?
Does anyone know howto get PDO lastInsertId to work?
提前致谢.
推荐答案
在您的代码片段中,我看到了一些可能对问题产生影响的轻微不一致.例如,在准备您使用的 SQL 语句的代码中,
In your code snippet, I saw some minor inconsistencies that may have an effect on the problem. For an example, in the code to prepare your SQL statement you use,
注意 $this
关键字.然后要检索 ID,您调用,
Notice the $this
keyword. Then to retrieve the ID, you call,
你有没有试过使用,
$this->dbh->lastInsertId();
这篇关于PDO lastInsertId 问题,php的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!