作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
如果我从 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/
我是一名优秀的程序员,十分优秀!