Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 PDO 与 MySQL 一起使用。我正在插入一个 ID 字段设置为自动增量的表。我想存储该值以在下一行中重用。我怎样才能做到这一点?
来自 PHP 手册:
返回最后插入的行的 ID,或来自序列对象的最后一个值,具体取决于底层驱动程序。例如,PDO_PGSQL 要求您为 name 参数指定序列对象的名称。
return $db->lastInsertId('yourIdColumn');