【发布时间】:2011-09-07 14:58:47
【问题描述】:
我正在执行以下操作以使用 codeigniter 上传文件(图像)。我想要做的是修改错误消息,以便很明显错误与哪个字段相关,因为页面上有多个上传选项,下面是我的上传代码,
$config['upload_path'] = './media/uploads/users';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '1000';
$config['max_width'] = '90';
$config['max_height'] = '60';
$this->upload->initialize($config);
if(!$this->upload->do_upload('logo_small'))
{
$error = array('error' => $this->upload->display_errors());
$this->template->build('users/employer', $error);
}
else
{
$file = $this->upload->data();
$logo_small = "small_".$file['file_name'];
}
所以基本上我希望有错误消息在错误消息中说明 Logo Small,然后如果错误与 Logo large 等有关,我希望它说明这一点。
【问题讨论】:
标签: php codeigniter file-upload