gpt4 book ai didi

php - 从 While 循环填充 PHP 数组

转载 作者:IT老高 更新时间:2023-10-28 23:47:03 26 4
gpt4 key购买 nike

如果我从 MySQL 数据库中获取数据并使用 while 循环遍历数据,我该如何将每个数据添加到数组中?

$result = mysql_query("SELECT * FROM `Departments`");
while($row = mysql_fetch_assoc($result))
{

}

最佳答案

在使用 while 循环迭代时构建一个数组。

$result = mysql_query("SELECT * FROM `Departments`");
$results = array();
while($row = mysql_fetch_assoc($result))
{
$results[] = $row;
}

或者,如果您使用 PDO , 你可以 do this automatically .

关于php - 从 While 循环填充 PHP 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6741425/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com