10bet网址
MySQL PHP API
Download this Manual
PDF (US Ltr)- 2.4Mb
PDF (A4)- 2.4Mb


MySQL PHP API/.../ mysqli_stmt::close, mysqli_stmt_close

3.9.6mysqli_stmt::close,mysqli_stmt_close

Copyright 1997-2021 the PHP Documentation Group.

  • mysqli_stmt::close

    mysqli_stmt_close

    Closes a prepared statement

Description

Object oriented style

publicboolmysqli_stmt::close();

Procedural style

boolmysqli_stmt_close(mysqli_stmtstatement);

Closes a prepared statement.mysqli_stmt_closealso 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 bymysqli_stmt_init.

Return Values

Returnstrueon success orfalseon failure.

See Also

mysqli_prepare