-
-
class 업로드 확장 컨트롤러 { - function go() {
- if(isset($ _POST['go'])) {
- //初始化
- $config['upload_path'] = '앨범/소스';
- $config['allowed_types'] = 'gif|jpg|png|bmp|jpeg';
- $config['encrypt_name'] = TRUE;
- $config['remove_spaces'] = TRUE;
- $config['max_size'] = '0';
- $config['max_width'] = '0';
- $config['max_height'] = '0';
$this->load->library('upload', $config);
//170*170그림
- $configThumb = array();
- $configThumb['image_library'] = 'gd2';
- $configThumb['source_image'] = '';
- $configThumb ['create_thumb'] = TRUE;
- $configThumb['maintain_ratio'] = TRUE; //保持图文比例
- $configThumb['new_image'] = 'album/thumb';
- $configThumb['width'] = 170;
- $configThumb['height'] = 170;
- //600*600이미지
- $configLarge = array();
- $configLarge['image_library'] = 'gd2';
- $configLarge['source_image'] = '';
- $ configLarge['create_thumb'] = TRUE;
- $configLarge['maintain_ratio'] = TRUE; //保持图文比例
- $configLarge['new_image'] = '앨범/대형';
- $configLarge['width'] = 600;
- $configLarge['height'] = 600;< /p>
$this->load->library('image_lib');
for($i = 1; $i $upload = $this->upload->do_upload('image'.$i);
- if($upload === FALSE) 계속;
- $data = $this->upload->data();//返回上传文件的所有关信息的数组
- $uid = $this->session->userdata('uid');
- $uploadedFiles[$i] = $data;
if($data['is_image'] == 1) {
- //初始化170*170
- $configThumb['source_image'] = $data['full_path']; //文件路径带文件name
- $this->image_lib->initialize($configThumb);
- $this->image_lib->resize();
- //初始化600*600
- $configLarge['source_image'] = $data['full_path']; //文件路径带文件name
- $this->image_lib->initialize($configLarge);
- $this->image_lib->resize();
- }
//插入图pictures信息到album表,插入的文件name为source目录文件name
- $picture = array(
- 'filename' => $data['file_name'],
- 'albumID' = > $this->uri->segment(4,0),
- 'uid' => $this->session->userdata('uid'),
- 'dateline' = > 시간(),
- '설명' => '',
- '클릭' => 0
- );
$this->load->model('album_model');
- $this->album_model->AddPic($picture);
- $picture = array();
- }
- }
- /* 출력 */
- $albumID = $this->uri->segment(4);
- $backurl = site_url() . 'photo/editpic/album/' .$albumID;
- $this->session->set_flashdata('msg','图文上传成功.');
- 리디렉션($backurl,'refresh') ;
- }
- }
-
复system代码
2,조회수:new_pic.view文件:
type="submit" name="go" value="사진 업로드" class="button" />
참고:
1. 한 번에 여러 파일을 업로드하려면 양식과 컨트롤러의 루프 부분에서 매개변수를 수정하면 됩니다.
2. album\source는 업로드 후 원본 이미지의 디렉터리입니다. Large 및 Thumb은 $this->image_lib->resize()를 두 번 실행한 후 썸네일이 저장되는 디렉터리입니다.
3. 썸네일 파일 이름이 앨범\소스 디렉토리와 일치해야 하는 경우 $config['thumb_marker'] = ''; 매개변수를 추가하십시오.
4. 배열의 $picture 부분은 데이터베이스에 저장되는 부분이므로 무시할 필요가 없습니다.
|