当前位置:Gxlcms > PHP教程 > PHP使用POD访问mysql数据库,怎么返回上一个插入记录的自增编号ID

PHP使用POD访问mysql数据库,怎么返回上一个插入记录的自增编号ID

时间:2021-07-01 10:21:17 帮助过:18人阅读

PHP 使用 POD 访问mysql数据库,如何返回上一个插入记录的自增编号ID
PHP 使用 POD 访问mysql数据库,如何返回上一个插入记录的自增编号ID

分享到: 更多


------解决方案--------------------
string PDO::lastInsertId ([ string $name = NULL ] )
------解决方案--------------------
try {
$dbh = new PDO('mysql:host=localhost;dbname=test', 'username', 'password');

$stmt = $dbh->prepare("INSERT INTO test (name, email) VALUES(?,?)");

try {
$dbh->beginTransaction();
$tmt->execute( array('user', 'user@example.com'));
$dbh->commit();
print $dbh->lastInsertId();
} catch(PDOExecption $e) {
$dbh->rollback();
print "Error!: " . $e->getMessage() . "
";
}
} catch( PDOExecption $e ) {
print "Error!: " . $e->getMessage() . "
";
}
?>

人气教程排行