PHP 8.4.2 Released!

mysqli::get_warnings

mysqli_get_warnings

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

mysqli::get_warnings -- mysqli_get_warningsGet result of SHOW WARNINGS

Descrizione

Stile orientato agli oggetti

public mysqli::get_warnings(): mysqli_warning|false

Stile procedurale

mysqli_get_warnings(mysqli $mysql): mysqli_warning|false
Avviso

Questa funzione, al momento non è documentata; è disponibile soltanto la lista degli argomenti.

add a note

User Contributed Notes 1 note

up
9
Anonymous
10 years ago
Take note:
Calling this function will change the output of mysqli_affected_rows if any warnings are returned. So if you're using mysqli_affected_rows in your application, make sure to call it before calling mysqli_get_warnings.
To Top