我正在使用 codeigntier 框架尝试解决与从数据库中检索信息有关的问题,例如:
模型.php:
public function read(){
$query = $this->db->get('table');
return $query->result();
}
控制器.php:
public function doSomething () {
$exampleArray['name'] = "Bob's Database";
$getModel = $this->load->model('model','getData');
$modelData = $this->getData->read();
// i want to assign the the $modelData to a array element like so
$exampleArray['modelData'] = $modelData // here's where im stuck :(
}
感谢您的帮助!!ps 这不是一个错误,它只是一个问题:)
}