gpt4 book ai didi

php - Codeigniter 使用数组进行事件记录查询

转载 作者:行者123 更新时间:2023-11-29 07:05:51 25 4
gpt4 key购买 nike

我正在使用此查询:

$lang 就像这样 Array ( [0] => 南非荷兰语 [1] => 英语 )

    $this->db->select('id');
$this->db->from('language');
$this->db->where_in('language',$lang);
$query = $this->db->get();
$l_id =$query->result_array();

对于此查询,当我使用 print_r($l_id) 时,我得到如下输出:

Array ( [0] => Array ( [id] => 1 ) [1] => Array ( [id] => 21 ) )  

但我需要这样的东西:

Array ( [0] =>  1  [1] =>  21 )   

请有人帮我做到这一点。谢谢

最佳答案

尝试这样...

$this->db->select('id');
$this->db->from('language');
$this->db->where_in('language',$lang);
$query = $this->db->get();
$l_id =$query->result_array();
foreach($l_id as $key=>$value)
{
$ids[] = $value['id'];
}
print_r($ids);

例如:

$l_id = array(array('id'=>'1'),array('id'=>21));
//print_r($l_id);
foreach($l_id as $key=>$value)
{
$ids[]=$value['id'];
}

print_r($ids);

关于php - Codeigniter 使用数组进行事件记录查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41714192/

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