使用CodeIgniter的类库做图片上传
前端之家收集整理的这篇文章主要介绍了
使用CodeIgniter的类库做图片上传,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
CodeIgniter的文件上传类允许文件被上传。您可以设置指定上传某类型的文件及指定大小的文件。
一个上传文件用的表单,允许用户选择一个文件并上传它。
当这个表单被提交,该文件被上传到指定的目录。
同时,该文件将被验证是否符合您设定的要求。
一旦文件上传成功,还要返回一个上传成功的确认窗口。
下面是表单:
然后是下面是上传类:
{
$this->load->helper('url');$config['upload_path'] = './images/'.date('Ym',time()).'/';
$config['allowed_types'] = 'gif|jpg|png';
$config['file_name'] = date('Y_m_d',time()).'_'.sprintf('%02d',rand(0,99));
$config['max_size'] = '500';
$config['max_width'] = '1024';
$config['max_height'] = '768';$this->load->library('upload',$config);if ( !$this->upload->do_upload())
{
$error = array('error' => $this->upload->display_errors());
}
else
{
$data = array('upload_data' => $this->upload->data());
}
}
需要用到的几个函数
$this->upload->do_upload():根据你的偏好配置参数执行操作。注意:默认情况下
上传的
文件来自于提交表单里名为userfile的
文件域,并且该表单必须是 "multipart"类型。
$this->upload->display_errors():如果do_upload()返回失败,
显示错误信息。此
函数不会
自动输出,而是返回数据,所以你可以按你的要求安排。
$this->upload->data():这是一个辅助
函数,它返回你
上传文件的所有相关信息的数组。
原文链接:https://www.f2er.com/php/24504.html