使用 CodeIgnator 时,当我尝试使用我的数据库时出现以下错误:
遇到 PHP 错误
严重性:警告
消息:非法偏移类型
文件名:models/flight_model.php
行号:12
产生此错误的代码:
$query = $this->db->query('SELECT Date, ID, Destination FROM flight');
$flights= array();
foreach ($query->result() as $row)
{
$flights[$row] = array('flight_id' => $row->ID, 'Date'=>$row->Date, 'Destination' => $row->Destination);
}
我不明白代码有什么问题:S
所有答案都已应用