我的视图中有这段代码。
$country = array(
'id' => 'country',
'name' => 'country',
'value' => get_user_info('country'),
'size' => 30
);
<tr>
<td><?php echo form_label('Country', $country['id']); ?></td>
<td><?php echo form_input($country); ?></td>
<td style="color: red;"><?php echo form_error($country['name']); ?><?php echo isset($errors[$country['name']])?$errors[$country['name']]:''; ?></td>
</tr>
get_user_info() 是我的 form_helper 中定义的一个函数,如下所示:
Form_Helper.php
if(! function_exists('get_user_info')){
function get_user_info($field)
{
$ci = & get_instance();
$ci->load->model('users');
return $ci->users->get_user_profile($field);
}
}
如您所见,在此函数中,我通过 users 模型访问数据库。用户模型
function get_user_profile($field)
{
$user_id = $this->session->userdata('user_id');
$this->db->select($field);
$this->db->where('user_id',$user_id);
$query = $this->db->get($this->profile_table_name);
if($query->num_rows()==1)return $query->row();
return NULL;
}
这个想法是在页面加载时自动填写表单的 Country 字段。
但是在视图中我收到了这个错误
A PHP Error was encountered
Severity: Warning
Message: htmlspecialchars() expects parameter 1 to be string, object given
Filename: helpers/form_helper.php
Line Number: 646
可能是什么问题?
有人可以知道发生了什么吗?或者过去有人做过这样的事情吗?
在辅助函数中访问模型是否正确?
谢谢
编辑
为了做得更好更快,我只需从控制器调用模型,然后将不同的值传递给视图。
控制器
$d = $this->users->get_user_profile('country, telephone, city, street, address, town');
$d2 = Array(
'telephone' => $d->telephone,
'country' => $d->country,
'city' => $d->city,
'street' => $d->street,
'address' =>$d->address,
'town' => $d->town);
$this->template->write_view('contentw','dashboard/profile', $d2);
$this->template->render();
所以我删除了我添加到我的 Helper 文件中的函数。
这种方法对我有用。
谢谢大家的答案