mysqli_result::fetch_row

mysqli_fetch_row

(PHP 5, PHP 7, PHP 8)

mysqli_result::fetch_row -- mysqli_fetch_rowFetch the next row of a result set as an enumerated array

說明

面向?qū)ο箫L(fēng)格

public mysqli_result::fetch_row(): array|null|false

過程化風(fēng)格

mysqli_fetch_row(mysqli_result $result): array|null|false

Fetches one row of data from the result set and returns it as an enumerated array, where each column is stored in an array offset starting from 0 (zero). Each subsequent call to this function will return the next row within the result set, or null if there are no more rows.

注意: 此函數(shù)將 NULL 字段設(shè)置為 PHP null 值。

參數(shù)

result

僅以過程化樣式:由 mysqli_query()、mysqli_store_result()、 mysqli_use_result()、mysqli_stmt_get_result() 返回的 mysqli_result 對象。

返回值

Returns an enumerated array representing the fetched row, null if there are no more rows in the result set, 或者在失敗時(shí)返回 false.

范例

示例 #1 mysqli_result::fetch_row() example

面向?qū)ο箫L(fēng)格

<?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 ID DESC";

$result $mysqli->query($query);

/* fetch object array */
while ($row $result->fetch_row()) {
    
printf("%s (%s)\n"$row[0], $row[1]);
}

過程化風(fēng)格

<?php

mysqli_report
(MYSQLI_REPORT_ERROR MYSQLI_REPORT_STRICT);
$mysqli mysqli_connect("localhost""my_user""my_password""world");

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

$result mysqli_query($mysqli$query);

/* fetch associative array */
while ($row mysqli_fetch_row($result)) {
    
printf("%s (%s)\n"$row[0], $row[1]);
}

以上例程的輸出類似于:

Pueblo (USA)
Arvada (USA)
Cape Coral (USA)
Green Bay (USA)
Santa Clara (USA)

參見