gpt4 book ai didi

php - 将数组结果中的值存储到 codeigniter 中的变量

转载 作者:行者123 更新时间:2023-12-04 20:35:49 24 4
gpt4 key购买 nike

我有以下 Controller ,

class mycontroller extends CI_Controller
{
public function getvalue() {
$q= $this->db->select(array('value'))
->from('settting')
->get();
$data['data']= $q->result();
$this->load->view('myview',$data);
}

}

在我看来:

打印_r($数据);

给出这样的输出

Array ( [0] => stdClass Object ( [value] => wwwwwwwwwwww ) [1] => stdClass Object ( [value] => 5454546 ) [2] => stdClass Object ( [value] => 6868 ) [3] => stdClass Object ( [value] => 9898 ) [4] => stdClass Object ( [value] => 7878 ) [5] => stdClass Object ( [value] => 212 ) [6] => stdClass Object ( [value] => 87878 ) [7] => stdClass Object ( [value] => 8989 ) [8] => stdClass Object ( [value] => 212 ) ) 

我试图将每个值存储在变量中

当我使用时,

foreach($data as $row)
{
echo $row->value;
}

它给了我所有的值(value),但我需要将每个值保存在变量中。

我该怎么做,像这样,

$var1='wwwwwwwwwwww'; // [0 ] array value  
$var2='5454546'; // [1] array value

最佳答案

最好保存到另一个数组中

$my_values = array();
foreach($data as $row)
{
$my_values[] = $row->value;
}

现在你有:

echo $my_values[0]; // wwwwwwwwwwww
echo $my_values[1]; // 5454546

关于php - 将数组结果中的值存储到 codeigniter 中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15021755/

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