我收到错误致命错误:不能使用 stdClass 类型的对象作为我的控制器名称中的数组是 Useraccount
function userList() {
$result['data'] = $this->Useraccount_mod->getUser_list();
$data['userlist']=$result['data'] ;
$this->load->view('Useraccount/Userlist', $data);
}
模型名称是 Useraccount_mod
function getUser_list() {
$query=$this->db->query("select * from users");
return $query->result();
}
和视图名称是用户列表
<tbody>
<?php
if ($userlist > 0) {
foreach ($userlist as $row) {
?>
<tr>
<td width="100"><?php echo $row['username']; ?></td>
<td width="100"><?php echo $row['name']; ?></td>
<td width="100"><?php echo $row['address']; ?></td>
<td width="100"><?php echo $row['creatdate']; ?></td>
<td width="100"><?php echo $row['updateddate']; ?></td>
</tr>
<?php
}
} else {
?>
<tr>
<td colspan="3" align="center"><strong>No Record Found</strong></td>
</tr>
<?php
}
?>
</tbody>
遇到 PHP 错误 严重性:错误消息:不能使用 stdClass 类型的对象作为数组文件名:Useraccount/Userlist.php 行号:38 回溯:
FFIVE