PHP mysqli_free_result MySQLi 函数

  • 定义和用法

    mysqli_free_result - 释放与结果关联的内存
  • 版本支持

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

    mysqli_free_result ( mysqli_result $result )
    
    释放与结果关联的内存。
    注意:当不再需要result对象时,应始终使用mysqli_free_result()释放结果。
  • 参数

    参数 必需的 描述
    result mysqli_query()mysqli_store_result()mysqli_use_result() 返回的结果集标识。
  • 返回值

    没有返回值。
  • 示例

    <?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();
    }
    
    $query = "SELECT Name, SurfaceArea from Country ORDER BY Code LIMIT 5";
    
    if ($result = mysqli_query($link, $query)) {
    
        /* Get field information for 2nd column */
        mysqli_free_result($result, 1);
        $finfo = mysqli_fetch_field($result);
    
        printf("Name:     %s\n", $finfo->name);
        printf("Table:    %s\n", $finfo->table);
        printf("max. Len: %d\n", $finfo->max_length);
        printf("Flags:    %d\n", $finfo->flags);
        printf("Type:     %d\n\n", $finfo->type);
    
        mysqli_free_result($result);
    }
    
    /* close connection */
    mysqli_close($link);
    
  • 相关函数

    mysqli_query() - 对数据库执行一次查询
    mysqli_stmt_store_result() - 从准备好的语句转移结果集
    mysqli_store_result() - 转移上一次查询返回的结果集
    mysqli_use_result() - 启动结果集检索