0

在 Android 上,当我在数据库中插入一行时,我可以在插入后轻松获取其 Id:

long id=database.insert(MySqlHelper.TABLE_UPLOAD, null,values);

是否有类似的PHP函数来检索Primary key插入行的 ,而无需使用另一个 Select 语句,就像 Like Android

4

1 回答 1

1

是的,有:mysql_insert_id,见http://php.net/manual/en/function.mysql-insert-id.php

如果您使用 MySQLi: mysqli_insert_id,请参阅http://www.php.net/manual/en/mysqli.insert-id.php

如果您使用 PDO: PDO::lastInsertId,请参阅http://www.php.net/manual/en/pdo.lastinsertid.php

于 2013-08-17T20:35:22.837 回答