gpt4 book ai didi

PHP foreach 进行查询

转载 作者:行者123 更新时间:2023-11-29 04:41:26 26 4
gpt4 key购买 nike

我有一个这样的数组

Array ( [12313] => 1 [12312] => 1 ) 1

数组的键是仓库中存在的元素,值是元素的数量。

我想使用 php 检查仓库数据库中是否确实存在项目和金额。我想也许我可以对每个项目检查使用 foreach,但我不知道如何使用 foreach。我想进行如下查询:

$query=$this->db->query("SELECT COUNT(*) as amount FROM warehouse where item=12313");
$check=$query->row_array();
$amt=$check['amount'];
if($amt>0){
return true;
}
else{
return false;
}

最佳答案

$array=array ( '12313' => 1,'12312' => 1 );
foreach($array as $k=>$val)
{
$query=$this->db->query("SELECT COUNT(*) as amount FROM warehouse where item='".$k."'");
$check=$query->row_array();
$amt=$check['amount'];
if($amt>0){
return true;
}
else{
return false;
}
}

关于PHP foreach 进行查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27899493/

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