PHP Conference Nagoya 2025

mysqli::get_warnings

mysqli_get_warnings

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

mysqli::get_warnings -- mysqli_get_warningsObtiene el resultado de SHOW WARNINGS

Descripción

Estilo orientado a objetos

mysqli::get_warnings(): mysqli_warning

Estilo por procedimientos

mysqli_get_warnings(mysqli $link): mysqli_warning
Advertencia

Esta función no está documentada actualmente, solamente se encuentra disponible la lista de parámetros.

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