PHP mysqli_stmt_param_count MySQLi 函数

  • 定义和用法

    mysqli_stmt_param_count - 返回给定语句的参数数量
  • 版本支持

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

    mysqli_stmt_param_count ( mysqli_stmt $stmt )
    
    返回准备好的语句中存在的参数标记的数量。
  • 参数

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

    返回代表参数数量的整数。
  • 示例

    <?php
    $link = mysqli_connect("localhost", "my_user", "my_password", "world");
    
    /* check connection */
    if (mysqli_connect_errno()) {
        printf("Connect failed: %s\n", mysqli_connect_error());
        exit();
    }
    
    if ($stmt = mysqli_prepare($link, "SELECT Name FROM Country WHERE Name=? OR Code=?")) {
    
        $marker = mysqli_stmt_param_count($stmt);
        printf("Statement has %d markers.\n", $marker);
    
        /* close statement */
        mysqli_stmt_close($stmt);
    }
    
    /* close connection */
    mysqli_close($link); 
    
  • 相关函数

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