PHP mysqli_field_seek MySQLi 函数

  • 定义和用法

    mysqli_field_seek - 将结果指针设置为指定的字段偏移量
  • 版本支持

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

    mysqli_field_seek ( mysqli_result $result , int $fieldnr )
    
    将字段光标设置为给定的偏移量。 下次调用mysqli_fetch_field()时,将检索与该偏移量关联的列的字段定义。
    注意: 要搜索到行的开头,请传递零偏移值。
  • 参数

    参数 必需的 描述
    result mysqli_query()mysqli_store_result()mysqli_use_result() 返回的结果集标识。
    fieldnr 字段编号。 此值必须在0到字段数-1的范围内。
  • 返回值

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

    <?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_field_seek($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_fetch_field() - 返回结果集中的下一个字段