我在CodeIgniter模型中有一个查询,例如:
$query = $this->db->get('subscriber');
上述查询结果返回 474 行。
现在我想以表格格式在我的视图中迭代这些值,因此我将这些值存储在PHP本机会话中,例如:
$_SESSION['list'] = $query;
但是当我在视图中迭代这个循环时,我没有得到想要的结果。
The value of $_SESSION['conn_id'] is '0'
The value of $_SESSION['result_id'] is '0'
The value of $_SESSION['result_array'] is 'Array'
The value of $_SESSION['result_object'] is 'Array'
The value of $_SESSION['custom_result_object'] is 'Array'
The value of $_SESSION['current_row'] is '0'
The value of $_SESSION['num_rows'] is '474'
The value of $_SESSION['row_data'] is ''
使用时
foreach($_SESSION['list'] as $key=>$value)
{
echo 'The value of $_SESSION['."'".$key."'".'] is '."'".$value."'".' <br />';
}
我知道这不是这样做的方法。如何在 CodeIgniter 视图中访问 quesryset 结果?
我们可以直接使用查询集数据吗?