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

2023-12-04

我使用此代码将一些数据存储到数组中

$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);
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

如何从codeigniter中的数组获取单个值 的相关文章

随机推荐