-1

タイトルの通り、私はライブラリ関数を持っています$this->foo->bar()$upload_data配列を$this->foo->bar()paramに渡すにはどうすればよいですか?

私は私のコントローラにこれを持っています

$upload_data = $this->upload->data();
//$upload_data['file_name']
$this->foo->bar($upload_data);

それから私は私の図書館にこれを持っています

public function bar($arr){
    $config['source_name'] = //How can I use $arr['file_name'] in here
}

そして、このエラーメッセージが表示されました: Illegal string offset 'file_name'

var_dump($upload_data)

array (size=14)
 'file_name' => string '1358459309.JPG' (length=14)
 'file_type' => string 'image/jpeg' (length=10)
 'file_path' => string 'C:/wamp/www/foldering/assets/img/uploaded_photos/' (length=49)
 'full_path' => string 'C:/wamp/www/foldering/assets/img/uploaded_photos/1358459309.JPG'       (length=63)
 'raw_name' => string '1358459309' (length=10)
 'orig_name' => string '1358459309.JPG' (length=14)
 'client_name' => string '200X CNY1.JPG' (length=13)
 'file_ext' => string '.JPG' (length=4)
 'file_size' => float 30.87
 'is_image' => boolean true
 'image_width' => int 640
 'image_height' => int 480
 'image_type' => string 'jpeg' (length=4)
 'image_size_str' => string 'width="640" height="480"' (length=24)
4

1 に答える 1

0

My mistake, issue comes from another function

于 2013-01-17T22:11:20.470 に答える