gpt4 book ai didi

PHP foreach 循环只给出 1 个结果

转载 作者:行者123 更新时间:2023-12-01 00:00:39 25 4
gpt4 key购买 nike

我有这个数组:

$cust = xtc_db_query("SELECT customers_id FROM orders");
$customers = xtc_db_fetch_array($cust);

当我尝试显示每条记录时,我只得到第一条:

foreach ($customers as $v) {
echo "ID: $v.\n <br>";
}

我尝试手动设置数组然后它工作正常:

$customers = array(1, 2, 3, 17);

最佳答案

您的$customers 数组将只包含一个值(查询的最后一个结果)。您需要使用 while 循环:

$cust = xtc_db_query("SELECT customers_id FROM orders");
while($customers = xtc_db_fetch_array($cust))
{
// Use $customers here.
}

关于PHP foreach 循环只给出 1 个结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21575739/

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