PDF (US Ltr)
- 2.4Mb
PDF (A4)
- 2.4Mb
HTML Download (TGZ)
- 251.4Kb
HTML Download (Zip)
- 258.8Kb
Copyright 1997-2021 the PHP Documentation Group.
mysqli_stmt::close
mysqli_stmt_close
Closes a prepared statement
Description
Object oriented style
public bool mysqli_stmt::close();
Procedural style
bool mysqli_stmt_close(mysqli_stmt stmt);
Closes a prepared statement.
mysqli_stmt_close
also deallocates the statement handle. If the current statement
has pending or unread results, this function cancels them so
that the next query can be executed.
Parameters
-
stmt
Procedural style only: A statement identifier returned by
mysqli_stmt_init
.
Return Values
Returns true
on success or
false
on failure.
See Also
mysqli_prepare
|