從結果集中取得一行作為列舉陣列

mysql_fetch_row

(PHP 4, PHP 5)

mysql_fetch_row從結果集中取得一行作為列舉陣列

說明

mysql_fetch_row(resource $result): array

返回根據所取得的行產生的陣列,如果沒有更多行則返回 false

mysql_fetch_row() 從和指定的結果標識關聯的結果集中取得一行數據並作為陣列返回。每個結果的列儲存在一個陣列的單元中,偏移量從 0 開始。

依次呼叫 mysql_fetch_row() 將返回結果集中的下一行,如果沒有更多行則返回 false

參見 mysql_fetch_array()mysql_fetch_assoc()mysql_fetch_object()mysql_data_seek()mysql_fetch_lengths()mysql_result()

參數

result

resource 型的結果集。此結果集來自對 mysql_query() 的呼叫。

返回值

Returns an numerical array of strings that corresponds to the fetched row, or false if there are no more rows.

mysql_fetch_row() fetches one row of data from the result associated with the specified result identifier. The row is returned as an array. Each result column is stored in an array offset, starting at offset 0.

範例

示例 #1 Fetching one row with mysql_fetch_row()

<?php
$result 
mysql_query("SELECT id,email FROM people WHERE id = '42'");
if (!
$result) {
    echo 
'Could not run query: ' mysql_error();
    exit;
}
$row mysql_fetch_row($result);

echo 
$row[0]; // 42
echo $row[1]; // the email value
?>

註釋

注意: 此函式將 NULL 欄位設定為 PHP null 值。

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *