PHP 8.4.2 Released!

mysqli::$warning_count

mysqli_warning_count

(PHP 5, PHP 7, PHP 8)

mysqli::$warning_count -- mysqli_warning_countRetourne le nombre d'avertissements générés par la dernière requête exécutée

Description

Style orienté objet

Style procédural

mysqli_warning_count(mysqli $mysql): int

Retourne le nombre d'avertissements générés par la dernière requête exécutée.

Note: Pour récupérer les messages d'avertissement, la commande SQL suivante peut être utilisée : SHOW WARNINGS [LIMIT row_count].

Liste de paramètres

mysql

Seulement en style procédural : Un objet mysqli retourné par la fonction mysqli_connect() ou mysqli_init().

Valeurs de retour

Le nombre d'avertissements ou 0 s'il n'y en a pas.

Exemples

Exemple #1 Exemple avec $mysqli->warning_count

Style orienté objet

<?php

mysqli_report
(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");

$mysqli->query("SELECT 42/0");

if (
$mysqli->warning_count > 0) {
$result = $mysqli->query("SHOW WARNINGS");
$row = $result->fetch_row();
printf("%s (%d): %s\n", $row[0], $row[1], $row[2]);
}

?>

Style procédural

<?php

mysqli_report
(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$link = mysqli_connect("localhost", "my_user", "my_password", "world");

mysqli_query($link, "SELECT 42/0");

if (
mysqli_warning_count($link) > 0) {
$result = mysqli_query($link, "SHOW WARNINGS");
$row = mysqli_fetch_row($result);
printf("%s (%d): %s\n", $row[0], $row[1], $row[2]);
}
?>

Les exemples ci-dessus vont afficher :

Warning (1365): Division by 0

Voir aussi

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top