gpt4 book ai didi

php - 获取所有记录到变量中

转载 作者:行者123 更新时间:2023-11-29 21:28:09 24 4
gpt4 key购买 nike

我有表:TableA

id | name
------------
1 | joe
------------
2 | Mike
------------
3 | Andrew
------------

现在我知道如何从 TableA 中获取记录

$sql=mysqli_query($con,"select * from TableA");
while($row=mysqli_fetch_array($sql))
{
\\execute code;
}

但是我想知道还有另一种方法可以不使用while循环来获取记录吗?

意思是:

$row=array();
$row=mysqli_fetch_array($sql); //Assume here that it gives all record in $row.

获取$row中的所有记录。这样我们就可以在以后的整个脚本中一次又一次地使用 $row

最佳答案

这应该有效:

$results = mysqli_fetch_all ($sql, MYSQLI_ASSOC);

这个其他答案也可能会给你一些线索:

Get all mysql selected rows into an array

关于php - 获取所有记录到变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35407964/

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