PHP Dokumentation: Mysqli stmt-init
12. Januar 2010 von werner
mysqli::stmt_init
mysqli_stmt_init
(PHP 5)
mysqli::stmt_init — mysqli_stmt_init — Initializes a statement and returns an object for use with mysqli_stmt_prepare
Beschreibung
Object oriented style (property):
mysqli_stmt stmt_init ( void )
Procedural style :
Allocates and initializes a statement object suitable for mysqli_stmt_prepare().
Hinweis: Any subsequent calls to any mysqli_stmt function will fail until mysqli_stmt_prepare() was called.
Parameter-Liste
- link
Nur bei prozeduralem Aufruf: Ein vonmysqli_connect() oder mysqli_init()zurückgegebenes Verbindungsobjekt.
Rückgabewerte
Returns an object.
Siehe auch
- mysqli_stmt_prepare() – Prepare a SQL statement for execution