mysqli_stmt::attr_get

mysqli_stmt_attr_get

(PHP 5, PHP 7, PHP 8)

mysqli_stmt::attr_get -- mysqli_stmt_attr_getSe utiliza para obtener el valor actual de un atributo de la sentencia

Descripción

Estilo orientado a objetos

mysqli_stmt::attr_get(int $attr): int

Estilo por procedimientos

mysqli_stmt_attr_get(mysqli_stmt $stmt, int $attr): int

Obtiene el valor actual de un atributo de la sentencia.

Parámetros

stmt

Sólo estilo por procediminetos: Un identificador de declaraciones devuelto por mysqli_stmt_init().

attr

El atributo que desea obtener.

Valores devueltos

Devuelve false si el atributo no se encuentra, en caso contrario devuelve el valor del atributo.

add a note add a note

User Contributed Notes

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