簡單的問題,但我不知道它爲什麼沒有正確打印或按預期工作。我有這個模型(工作,因爲當我的print_r($結果)它顯示的數據:Codeigniter打印查詢結果
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 文件名:視圖/ home.php 行號:16
而且
嚴重性:警告 消息:用於提供參數無效foreach() 文件名:views/home.php 行號:16
使用$屬性,而不是$的resultSet –
把它作爲一個回答@ShayanHusaini所以我可以把它標記爲一個:) –
把它作爲answere –