mysqli_stmt::__construct

(PHP 5, PHP 7, PHP 8)

mysqli_stmt::__constructConstruye un nuevo objeto mysqli_stmt

Descripción

mysqli_stmt::__construct(mysqli $link, string $query = ?)

Este método construye un nuevo objeto mysqli_stmt.

Nota:

En general, se debería utilizar mysqli_prepare() o mysqli_stmt_init() para crear un objeto mysqli_stmt, en lugar de instanciar directamente el objeto con new mysqli_stmt. Este método (y la capacidad de instanciar directamente objetos mysqli_stmt) podrían quedar obsoletos y ser eliminados en el futuro.

Parámetros

link

Sólo estilo por procediminetos: Un identificador de enlace devuelto por mysqli_connect() o mysqli_init()

query

La consulta, como un string. Si se omite este parámetro, el constructor se comporta de forma idéntica a mysqli_stmt_init(); si se proporciona, se comporta como mysqli_prepare().

Ver también

add a note add a note

User Contributed Notes 1 note

up
0
tiomno at gmail dot com
8 years ago
There may be the case when you want/need to extend the `mysqli_stmt` class to add or overwrite some behaviour. In my case, I'm overwriting the `mysqli::prepare()` method to return an instance of my own class extended from `mysqli_stmt` to change its behaviour in some integration tests.

So please, do not remove or block the ability to use mysqli::__constructor(). Thanks!!
To Top