(PHP 5, PHP 7, PHP 8)
mysqli_result::data_seek -- mysqli_data_seek — 调整结果指针到结果中的任意行
面向对象风格
过程化风格
函数 mysqli_data_seek() 将结果集中的结果指针跳转到 offset
指定的任意位置。
result
仅过程化风格:由 mysqli_query()、mysqli_store_result()、mysqli_use_result() 或 mysqli_stmt_get_result() 返回的 mysqli_result 对象。
offset
行偏移量。必须在零和总行数减一之间 (0..mysqli_num_rows() - 1)。
示例 #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("City: %s Countrycode: %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 ("City: %s Countrycode: %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() 函数获得的缓冲结果。