致命错误:不能在第 38 行的 C:\xampp\htdocs\ov400\application\views



我收到错误 致命错误:无法使用 stdClass 类型的对象作为数组 我的控制器名称是用户帐户

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 类型的对象作为数组 文件名:用户帐户/用户列表.php 行号:38 回溯:

您正在使用result((函数来获取记录,但这会将记录作为对象而不是数组。如果你想得到数组,你必须使用result_array((。

function userList() {   
$data['userlist'] = $this->Useraccount_mod->getUser_list();
$this->load->view('Useraccount/Userlist', $data);
}

方法一:

function getUser_list() {
$query = $this->db->query("select * from users")->result_array(); //here we can use result() as well but it gives object not array
return $query;
}

<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>

方法2:

function getUser_list() {
$query = $this->db->query("select * from users")->result(); 
return $query;
}

<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>

相关内容

  • 没有找到相关文章

最新更新