我正在开发我的 CodeIgniter 项目,到目前为止它运行良好。
但是,我需要一些方法来计算上传文件的数量,因为我想在某些情况下(但不是全部)限制它。
我怎样才能做到这一点?我试过count($_FILES)
了,但这没有给我任何有用的东西。
我还尝试了很多其他的东西,但都没有给我我需要的信息。
上传表单是一个多文件上传,我正在使用这个库来处理多个上传。
没有计数的上传函数如下所示:
function do_upload()
{
$setid = $this->input->post('imageset');
$this->load->library('upload');
$this->load->library('image_lib');
$this->upload->initialize(array(
"upload_path" => "./photos/",
"allowed_types" => "jpg|jpeg|png|gif",
"encrypt_name" => TRUE
));
try {
$this->upload->do_multi_upload("files");
$images = $this->upload->get_multi_upload_data();
$config = array(
'image_library' => 'gd2',
'create_thumb' => TRUE,
'maintain_ratio' => TRUE,
'width' => '145',
'height' => '145'
);
foreach ($images as $image)
{
$config['source_image'] = $image['full_path'];
$this->image_lib->initialize($config);
$this->image_lib->resize();
$this->manage_model->insertimage($image['file_name'],$image['orig_name'],$image['file_size'],$image['file_type'],$setid);
}
$this->session->set_flashdata('success','Billederne er nu blevet uploadet.');
} catch (Exception $e) {
$this->session->set_flashdata('error', $e);
}
redirect('manage/images','refresh');
}
非常感谢任何帮助。