php – 使用预准备语句执行插入查询后获取自动增量ID

前端之家收集整理的这篇文章主要介绍了php – 使用预准备语句执行插入查询后获取自动增量ID前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我使用PHPmysqli_ *函数执行带有存储过程的插入查询,有没有办法检索自动增量id字段的值?
MysqLi-> insert_id似乎不起作用.
您确定您执行的最后一个查询是INSERT吗?

mysqli->insert_id似乎是正确的答案:

Return Values

The value of the AUTO_INCREMENT field that was updated
by the prevIoUs query. Returns zero if
there was no prevIoUs query on the
connection or if the query did not
update an AUTO_INCREMENT value.

原文链接:https://www.f2er.com/php/240240.html

猜你在找的PHP相关文章