首頁 > 資料庫 > mysql教程 > 如何在 PHP 中迭代 MySQL 結果集?

如何在 PHP 中迭代 MySQL 結果集?

Susan Sarandon
發布: 2024-12-10 03:04:08
原創
398 人瀏覽過

How to Iterate Through MySQL Result Sets in PHP?

如何在 PHP 中循環遍歷 MySQL 結果集

在 PHP 中使用 MySQL 時,通常會從資料庫擷取資料並迭代結果。有多種方法可以實現此目的,每種方法都有自己的優點和缺點。

使用 mysql_fetch_array() 函數

一個常見的方法是使用 mysql_fetch_array()功能。此函數從結果集中獲取一行資料並將其作為關聯數組傳回,其中列名稱用作數組鍵。

<?php

// Establish a connection to the MySQL database
$link = mysql_connect(/* arguments here */);

// Execute a query to retrieve data from the "table" table
$query = sprintf("SELECT * FROM table");
$result = mysql_query($query, $link);

// Loop through the result set using mysql_fetch_array()
if ($result) {
  while ($row = mysql_fetch_array($result)) {
    // Do something with the current row data (e.g., print it)
    print_r($row);
  }
} else {
  // Handle any errors that occurred during query execution
  echo mysql_error();
}

?>
登入後複製

以上是如何在 PHP 中迭代 MySQL 結果集?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板