gpt4 book ai didi

php - 将 SQL 结果转换为 PHP 数组

转载 作者:IT老高 更新时间:2023-10-29 00:19:39 26 4
gpt4 key购买 nike

我对 PHP 还很陌生,我一直在四处寻找,似乎找不到我正在寻找的具体答案。

我想做一个 SQL 查询,比如:

$result = mysqli_query($connection, $command)
if (!$result) { die("Query Failed."); }

// Create my array here ... I'm thinking of maybe having to
// make a class that can hold everything I need, but I dunno

while($row = mysqli_fetch_array($result))
{
// Put the row into an array or class here...
}

mysqli_close($connection);

// return my array or class

基本上,我想获取结果的全部内容并创建一个数组,我可以以与行类似的方式访问该数组。例如,如果我有一个名为“uid”的字段,我希望能够通过 myData['uid'] 获取它。我猜因为可能有几行,可能更像是 myData[0]['uid']、myData[1]['uid'] 等。

任何帮助将不胜感激。

最佳答案

你可以这样做:

$rows = [];
while($row = mysqli_fetch_array($result))
{
$rows[] = $row;
}

关于php - 将 SQL 结果转换为 PHP 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17056349/

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