gpt4 book ai didi

php - 如何从codeigniter中的数组中获取单个值

转载 作者:行者123 更新时间:2023-11-29 02:54:28 24 4
gpt4 key购买 nike

我使用这段代码将一些数据存储到一个数组中

$this->data['result']    =   $this->mymodel->search($keyword);

当我使用 print_r($this->data); 打印结果时

它是这样显示的

Array ( [base_url] => http://localhost/pelikanartline.com/ [result] => Array ( [0] => stdClass Object ( [product_id] => 2 [product_code] => 167007 [product_name] => ARTLINE VIVIX HIGHLIGHTERS 10PK YELLOW [product_discription] => some description [xylene_free] => y [rohs_compliant] => y [product_features] => some text ) ) )

现在我想将 product_id 值存储到像 pro_id 这样的变量中。请帮我做这个。

最佳答案

试试这个:

 $pro_id = [];

foreach($this->data['result'] as $key => $val){
$pro_id[] = $val->product_id;
}

print_r($pro_id);

关于php - 如何从codeigniter中的数组中获取单个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32221089/

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