在http://ellislab.com/codeigniter/user-guide/database/results.html的Codeigniter查詢的所有示例中,我發現必須知道該字段的名稱以獲取其值。按數字索引獲取ASSOC數組值
$query = $this->db->query("SELECT title,name,body FROM table");
foreach ($query->result() as $row)
{
echo $row->title;
echo $row->name;
echo $row->body;
}
例如,如果我想獲得title
,我將執行row->title
。有沒有辦法使用索引獲得title
像$row[0]
?
這是你不能使用一個對象作爲對象陣列。 – guybennet