PHP mysqli_stmt_close MySQLi 函数

  • 定义和用法

    mysqli_stmt_close - 关闭准备好的语句
  • 版本支持

    PHP4 PHP5 PHP7
    不支持 支持 支持
  • 语法

    mysqli_stmt_close ( mysqli_stmt $stmt )
    
    关闭准备好的语句。 mysqli_stmt_close()也取消分配语句句柄。 如果当前语句具有待处理或未读的结果,则此函数将其取消,以便可以执行下一个查询。
  • 参数

    参数 必需的 描述
    stmt mysqli_stmt_init() 返回的 statement 标识。
  • 返回值

    成功时返回 TRUE, 或者在失败时返回 FALSE。
  • 示例

    <?php
    $link = mysqli_connect("localhost", "my_user", "my_password", "world");
    
    /* check connection */
    if (!$link) {
        printf("Connect failed: %s\n", mysqli_connect_error());
        exit();
    }
    
    /* prepare statement */
    if ($stmt = mysqli_prepare($link, "SELECT Code, Name FROM Country ORDER BY Name LIMIT 5")) {
        mysqli_stmt_execute($stmt);
    
        /* bind variables to prepared statement */
        mysqli_stmt_close($stmt, $col1, $col2);
    
        /* fetch values */
        while (mysqli_stmt_fetch($stmt)) {
            printf("%s %s\n", $col1, $col2);
        }
    
        /* close statement */
        mysqli_stmt_close($stmt);
    }
    
    /* close connection */
    mysqli_close($link);
    
  • 相关函数

    mysqli_prepare() - 准备执行一个 SQL 语句