2016-07-08 5 views
0

こんにちは私はコードイグナイターを使用して画像ファイルのみをアップロードしようとしています.png、jpg、jpegファイルをアップロードする必要があります。他のタイプのファイルも.txt、.mp3などのようにアップロードされています。私はすぐにこの問題を解決するために私はすべての前にありがとう。コードイグナイタを使用してのみ画像ファイルをアップロードできますか?

$config['upload_path'] = './avatar/'; 
    $config['allowed_types'] = 'gif|jpeg|png|jpg'; 
    $config['max_size'] = '1024mb'; 
    $config['max_width'] = '3000'; 
    $config['max_height'] = '3000'; 
    $this->load->library('upload', $config); 

    if (!$this->upload->do_upload()) { 

     $ve['data'] = $this->upload->display_errors(); 
    } else { 
     $this->upload->data(); 
    } 

答えて

0
$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); 
// Alternately you can set preferences by calling the initialize function. Useful if you auto-load the //class: 
$this->upload->initialize($config); 

if($this->upload->do_upload()) 
{ 
    $data = array('upload_data' => $this->upload->data()); 
    $this->load->view('upload_success',$data); 
}else 
{ 
    $error = array('error' => $this->upload->display_errors()); 
    $this->load->view('file_view', $error); 
} 
0

私はあなたがもし条件の中でそれを検証しようとしているときユーザーファイル/アップロードされたファイルに送信する必要があると思います。

if (! $this->upload->do_upload('userfile')) 
{ 
    $error = array('error' => $this->upload->display_errors()); 
    $this->load->view('upload_form', $error); 
} 
else 
{ 
    $this->upload->data(); 
} 
関連する問題