3

これは、ファイルアップロード用のコントローラーにあります

$config['upload_path'] = './assets/images/b2b/banner-agent/';
$config['allowed_types'] = 'gif|jpg|png';
$config['overwrite'] = TRUE;
$config['file_name'] = "$banner2";
$this->load->library('upload', $config);
$this->upload->data();
$this->upload->do_upload();
$this->upload->initialize($config);

私のコードに何か問題がありますか?アップロードが機能していません。

4

1 に答える 1

4

do_uploadアップロードクラスの構成変数を初期化して設定する前に、メソッドを単純に呼び出すことはできません。

次のようにコードを変更する必要があります。

$config['upload_path'] = './assets/images/b2b/banner-agent/';
$config['allowed_types'] = 'gif|jpg|png';
$config['overwrite'] = TRUE;
$config['file_name'] = $banner2;
$this->load->library('upload'); //initialize
$this->upload->initialize($config); //Alternately you can set preferences by calling the initialize function. Useful if you auto-load the class
$this->upload->do_upload(); // do upload
if($this->upload->do_upload()){
    $this->upload->data(); //returns an array containing all of the data related to the file you uploaded.
}

それについてもCodeigniterwikiを参照できます。

http://ellislab.com/codeigniter/user-guide/libraries/file_uploading.html

お役に立てれば。

于 2013-02-08T10:13:19.100 に答える