目录

PHP mysqli insert_id() 函数

❮ PHP MySQLi 参考

示例 - 面向对象风格

假设 "Persons" 表有一个自动生成的 id 字段。返回上次查询的 id:

<?php
$mysqli = new mysqli("localhost","my_user","my_password","my_db");

if ($mysqli -> connect_errno) {
  echo "Failed to connect to MySQL: " . $mysqli -> connect_error;
  exit();
}

$mysqli -> query("INSERT INTO Persons (FirstName, LastName, Age) VALUES ('Glenn', 'Quagmire', 33)");

// Print auto-generated id
echo "New record has id: " . $mysqli -> insert_id;

$mysqli -> close();
?>

查看底部的程序样式示例。


定义和用法

mysqli_insert_id() 函数返回上次查询的 id(使用 AUTO_INCRMENT 生成)。


语法

面向对象风格:

$mysqli -> insert_id

程序风格:

mysqli_insert_id( connection)

参数值

Parameter Description
connection Required. Specifies the MySQL connection to use

技术细节

返回值: 一个整数,表示上次查询更新的 AUTO_INCREMENT 字段的值。如果没有更新或没有 AUTO_INCRMENT 字段,则返回零
PHP 版本: 5+

示例 - 程序风格

假设 "Persons" 表有一个自动生成的 id 字段。返回上次查询的 id:

<?php
$con = mysqli_connect("localhost","my_user","my_password","my_db");

if (mysqli_connect_errno()) {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  exit();
}

mysqli_query($con, "INSERT INTO Persons (FirstName, LastName, Age) VALUES ('Glenn', 'Quagmire', 33)");

// Print auto-generated id
echo "New record has id: " . mysqli_insert_id($con);

mysqli_close($con);
?>


❮ PHP MySQLi 参考