im使用下面的代碼上傳多個圖像,獲取圖像文件名,與「,」連接並返回值,以便使用CodeIgniter將其插入到數據庫中。連接上傳的圖像文件名
即時通訊存在的問題是我無法使用implode()連接文件名。
有人可以告訴我我做錯了什麼嗎?
function upload(){
$config['upload_path'] = './uploadsim/';
$config['allowed_types'] = 'gif|jpg|jpeg';
$config['max_size'] = '0';
$config['max_width'] = '0';
$config['max_height'] = '0';
$this->load->library('upload', $config);
for($i = 1; $i < 6; $i++) {
$upload = $this->upload->do_upload('image'.$i);
if($upload === FALSE) continue;
$images = array('upload_data'=>$this->upload->data());
$imagename= $images['upload_data']['file_name'];
$impl= implode(",", $imagename);
}
return $impl;
}
是什麼的''$圖像print_r'或'var_dump'輸出'? – imm
@imm http://pastie.org/2730453爲$ images的var_dump – LiveEn