我对 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'] 等。
任何帮助,将不胜感激。