mysqli_result::data_seek

mysqli_data_seek

(PHP 5, PHP 7, PHP 8)

mysqli_result::data_seek -- mysqli_data_seek将结果指针调整到结果中的任意行

描述

面向对象风格

public mysqli_result::data_seek(int $offset): bool

过程式风格

mysqli_data_seek(mysqli_result $result, int $offset): bool

函数 mysqli_data_seek() 会在结果集中寻找由 offset 指定的任意结果指针。

参数

result

仅过程式风格:由 mysqli_query()mysqli_store_result()mysqli_use_result()mysqli_stmt_get_result() 返回的 mysqli_result 对象。

offset

行偏移量。必须在 0 到总行数减 1 之间 (0..mysqli_num_rows() - 1)。

返回值

成功时返回 true,失败时返回 false

示例

示例 #1 mysqli::data_seek() 示例

面向对象风格

<?php

mysqli_report
(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");

$query = "SELECT Name, CountryCode FROM City ORDER BY Name";
$result = $mysqli->query($query);

/* 寻找行号 401 */
$result->data_seek(400);

/* 获取单行 */
$row = $result->fetch_row();

printf("城市:%s 国家代码:%s\n", $row[0], $row[1]);

过程式风格

<?php

mysqli_report
(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$link = mysqli_connect("localhost", "my_user", "my_password", "world");

$query = "SELECT Name, CountryCode FROM City ORDER BY Name";

$result = mysqli_query($link, $query);

/* 寻找行号 401 */
mysqli_data_seek($result, 400);

/* 获取单行 */
$row = mysqli_fetch_row($result);

printf ("城市:%s 国家代码:%s\n", $row[0], $row[1]);

上面的示例将输出

City: Benin City  Countrycode: NGA

示例 #2 在迭代时调整结果指针

此函数在迭代结果集时非常有用,可以用来强加自定义顺序或在多次迭代时重绕结果集。

<?php

mysqli_report
(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");

$query = "SELECT Name, CountryCode FROM City ORDER BY Name LIMIT 15,4";
$result = $mysqli->query($query);

/* 反向迭代结果集 */
for ($row_no = $result->num_rows - 1; $row_no >= 0; $row_no--) {
$result->data_seek($row_no);

/* 获取单行 */
$row = $result->fetch_row();

printf("城市:%s 国家代码:%s\n", $row[0], $row[1]);
}

/* 将指针重置到结果集的开头 */
$result->data_seek(0);

print
"\n";

/* 再次迭代同一个结果集 */
while ($row = $result->fetch_row()) {
printf("城市:%s 国家代码:%s\n", $row[0], $row[1]);
}

上面的示例将输出

City: Acmbaro  Countrycode: MEX
City: Abuja  Countrycode: NGA
City: Abu Dhabi  Countrycode: ARE
City: Abottabad  Countrycode: PAK

City: Abottabad  Countrycode: PAK
City: Abu Dhabi  Countrycode: ARE
City: Abuja  Countrycode: NGA
City: Acmbaro  Countrycode: MEX

注释

注意:

此函数只能与使用函数 mysqli_store_result()mysqli_query()mysqli_stmt_get_result() 获取的缓冲结果一起使用。

参见

添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top