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.
在 PHPBB3 中使用$db->sql_query时,如何获取使用insert语句创建的行的 ID?
$db->sql_query
insert
采用:
SELECT LAST_INSERT_ID()
参考:
在 phpBB3 中,你得到了一个更好的方法,dbal 为此执行了一个函数:$db->sql_nextid():
$sql = 'INSERT INTO ' . USERS_TABLE . ' ' . $db->sql_build_array('INSERT', $user_ary); $db->sql_query($sql); $user_id = $db->sql_nextid();