简单的问题,但我不知道为什么它不能正确打印或按预期工作。我在模型中有这个(有效,因为当我 print_r($result) 它显示数据时:
function get_latest_entries()
{
$query = $this->db->get('property');
return $query->result_array();
}
对于控制器:
public function index()
{
$resultSet['properties'] = $this->propertymodel->get_latest_entries();
$this->load->view('home', $resultSet);
}
在视图中,我想遍历数组(表有描述、城市、地址列):
<?php
foreach($resultSet as $item)
{
echo $item->city;
echo $item->description;
}
?>
我在主页上获得两条记录,其中显示结果如上:
严重性:通知消息:未定义变量:resultSet 文件名:views/home.php 行号:16
和
严重性:警告消息:为 foreach() 提供的参数无效 文件名:views/home.php 行号:16