php8.5
Home/ Manual/ mysqli / mysqli/ mysqli::$warning_count

mysqli::$warning_count

PHP function Edit on GitHub ✎

Returns the number of warnings generated by the most recently executed query

Description

Oop

intmysqli->warning_count

Procedural

mysqli_warning_count(mysqli $mysql): int

Returns the number of warnings generated by the most recently executed query.

Note

For retrieving warning messages the following SQL command can be used: SHOW WARNINGS [limit row_count].

Parameters

Return Values

Number of warnings or zero if there are no warnings.

Examples

$mysqli->warning_count example

Oop

php
<?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]);
}

Procedural

php
<?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]);
}

Outputs

output
Warning (1365): Division by 0

See Also

Source: reference/mysqli/mysqli/warning-count.xml · from the official PHP manual (php/doc-en)