(PHP 5, PHP 7, PHP 8)
mysqli_result::field_seek -- mysqli_field_seek — 将结果指针设置为指定的字段偏移量
面向对象风格
过程化风格
将字段游标设置为给定的偏移量。对 mysqli_fetch_field() 的下一次调用将检索与该偏移量关联的列的字段定义。
注意:
要跳转到行的开头,请传递一个值为零的偏移量。
result
仅过程化风格:由 mysqli_query()、mysqli_store_result()、mysqli_use_result() 或 mysqli_stmt_get_result() 返回的 mysqli_result 对象。
index
字段编号。此值必须在 0
到 字段数量 - 1
范围内。
始终返回 true
。
示例 #1 面向对象风格
<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
/* 检查连接 */
if (mysqli_connect_errno()) {
printf("连接失败: %s\n", mysqli_connect_error());
exit();
}
$query = "SELECT Name, SurfaceArea from Country ORDER BY Code LIMIT 5";
if ($result = $mysqli->query($query)) {
/* 获取第二列的字段信息 */
$result->field_seek(1);
$finfo = $result->fetch_field();
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);
$result->close();
}
/* 关闭连接 */
$mysqli->close();
?>
示例 #2 过程化风格
<?php
$link = mysqli_connect("localhost", "my_user", "my_password", "world");
/* 检查连接 */
if (mysqli_connect_errno()) {
printf("连接失败: %s\n", mysqli_connect_error());
exit();
}
$query = "SELECT Name, SurfaceArea from Country ORDER BY Code LIMIT 5";
if ($result = mysqli_query($link, $query)) {
/* 获取第二列的字段信息 */
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);
}
/* 关闭连接 */
mysqli_close($link);
?>
上面的示例将输出
Name: SurfaceArea Table: Country max. Len: 10 Flags: 32769 Type: 4