PHP mysqli_field_tell MySQLi 函数

  • 定义和用法

    mysqli_field_tell - 获取结果指针的当前字段偏移量
  • 版本支持

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

    mysqli_field_tell (mysqli_result $result)
    
    返回用于最后一次mysqli_fetch_field() 调用的字段游标的位置。 该值可用作 mysqli_field_seek()《 的参数。
  • 参数

    参数 必需的 描述
    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 all fields */
        while ($finfo = mysqli_fetch_field($result)) {
    
            /* get fieldpointer offset */
            $currentfield = mysqli_field_tell($result);
    
            printf("Column %d:\n", $currentfield);
            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() - 返回结果集中的下一个字段
    mysqli_field_seek() - 将结果指针设置为指定的字段偏移量