CodeIgniter-파일 업로드
파일 업로드 클래스를 사용하여 파일을 업로드 할 수 있으며 업로드 할 파일의 유형과 크기를 제한 할 수도 있습니다. CodeIgniter의 파일 업로드 프로세스를 이해하려면 주어진 예제에 표시된 단계를 따르십시오.
예
다음 코드를 복사하여 application/view/Upload_form.php.
<html>
<head>
<title>Upload Form</title>
</head>
<body>
<?php echo $error;?>
<?php echo form_open_multipart('upload/do_upload');?>
<form action = "" method = "">
<input type = "file" name = "userfile" size = "20" />
<br /><br />
<input type = "submit" value = "upload" />
</form>
</body>
</html>
아래에 주어진 코드를 복사하여 application/view/Upload_success.php
<html>
<head>
<title>Upload Form</title>
</head>
<body>
<h3>Your file was successfully uploaded!</h3>
<ul>
<?phpforeach ($upload_data as $item => $value):?>
<li><?php echo $item;?>: <?php echo $value;?></li>
<?phpendforeach; ?>
</ul>
<p><?php echo anchor('upload', 'Upload Another File!'); ?></p>
</body>
</html>
아래에 주어진 코드를 복사하여 application/controllers/Upload.php. 창조하다 "uploads”폴더는 CodeIgniter의 루트, 즉 응용 프로그램 폴더의 상위 디렉토리에 있습니다.
<?php
class Upload extends CI_Controller {
public function __construct() {
parent::__construct();
$this->load->helper(array('form', 'url'));
}
public function index() {
$this->load->view('upload_form', array('error' => ' ' ));
}
public function do_upload() {
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = 100;
$config['max_width'] = 1024;
$config['max_height'] = 768;
$this->load->library('upload', $config);
if ( ! $this->upload->do_upload('userfile')) {
$error = array('error' => $this->upload->display_errors());
$this->load->view('upload_form', $error);
}
else {
$data = array('upload_data' => $this->upload->data());
$this->load->view('upload_success', $data);
}
}
}
?>
경로 파일을 다음과 같이 변경하십시오. application/config/routes.php 파일 끝에 다음 줄을 추가하십시오.
$route['upload'] = 'Upload';
이제 브라우저에서 다음 URL을 방문하여이 예제를 실행 해 보겠습니다. yoursite.com을 URL로 바꿉니다.
http://yoursite.com/index.php/upload
다음 화면이 생성됩니다-
성공적으로 파일을 업로드하면 다음 화면이 나타납니다.