首页 >数据库 >mysql教程 >如何在 PHP 中迭代 MySQL 结果集?

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

Susan Sarandon
Susan Sarandon原创
2024-12-10 03:04:08398浏览

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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn