Constructs a new mysqli_stmt object (original) (raw)

mysqli_stmt::__construct

(PHP 5, PHP 7)

mysqli_stmt::__construct — Constructs a new mysqli_stmt object

Description

public mysqli_stmt::__construct ( mysqli $link [, string $query ] )

Note:

In general, you should use either mysqli_prepare() ormysqli_stmt_init() to create amysqli_stmt object, rather than directly instantiating the object with new mysqli_stmt. This method (and the ability to directly instantiatemysqli_stmt objects) may be deprecated and removed in the future.

See Also