MysqlndUhConnection::getLastInsertId
(PECL mysqlnd-uh >= 1.0.0-alpha)
MysqlndUhConnection::getLastInsertId — Retourne l'identifiant auto-généré utilisé dans la dernière requête
Description
public int MysqlndUhConnection::getLastInsertId
( mysqlnd_connection
$connection
)Retourne l'identifiant auto-généré utilisé dans la dernière requête.
Liste de paramètres
-
connection
-
Le gestionnaire de connexion Mysqlnd. Ne pas modifier !
Valeurs de retour
L'identifiant de la dernière insertion.
Exemples
Exemple #1 Exemple avec MysqlndUhConnection::getLastInsertId()
<?php class proxy extends MysqlndUhConnection { public function getLastInsertId($res) { printf("%s(%s)\n", __METHOD__, var_export(func_get_args(), true)); $ret = parent::getLastInsertId($res); printf("%s retourne %s\n", __METHOD__, var_export($ret, true)); return $ret; } } mysqlnd_uh_set_connection_proxy(new proxy()); $mysqli = new mysqli("localhost", "root", "", "test"); $mysqli->query("DROP TABLE IF EXISTS test"); $mysqli->query("CREATE TABLE test(id INT AUTO_INCREMENT PRIMARY KEY, col VARCHAR(255))"); $mysqli->query("INSERT INTO test(col) VALUES ('a')"); var_dump($mysqli->insert_id); ?>
L'exemple ci-dessus va afficher :
proxy::getLastInsertId(array ( 0 => NULL, )) proxy::getLastInsertId retourne 1 int(1)
Voir aussi
- mysqlnd_uh_set_connection_proxy() - Installe un proxy pour les connexions mysqlnd
- mysqli_insert_id() - Retourne l'identifiant automatiquement généré par la dernière requête
- mysql_insert_id() - Retourne l'identifiant généré par la dernière requête