gpt4 book ai didi

php - 我如何访问 mysql_fetch_row 内的元素

转载 作者:行者123 更新时间:2023-11-30 01:16:22 25 4
gpt4 key购买 nike

我想从我的表格中打印特定类别计数,如何使用正确的引用来做到这一点?

mysql:

while($row = mysql_fetch_array($result))
{
echo $row['category'] . " " . $row['count'];

echo "<br>";
}

输出:

auto/Bicycle 1
Clothing 7
electronics 4

现在我如何打印特定类别(例如服装)? (我宁愿不只使用 $row[1])

最佳答案

如果你想要可重用的数组,你可以这样做:

while($row = mysql_fetch_array($result)){
$result[$row['category']] = $row['count'];
}

然后只需使用 $result['Clothing'] 即可获取服装数量

关于php - 我如何访问 mysql_fetch_row 内的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19018831/

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