3

我正在开发我的 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');
}

非常感谢任何帮助。

4

2 回答 2

11

您可以$_FILES使用例如检查变量中的项目数:

$total = count($_FILES['your_variable_array_in_html']['tmp_name']);

您需要在以下操作之前执行此操作:

$this->upload->do_multi_upload("files");

线。

正如您已经注意到的那样,$_FILES它只包含一个变量 - 一个数组 - 包含不同部分的数组,tmp_name, name,error等。有关更多详细信息,请查看手册

于 2013-05-11T22:13:16.667 回答
1

如果你想限制上传的文件。您可以通过两个步骤限制它们:

  1. 只接受上传文件的指定数组名。即文件[]

  2. 现在您可以轻松统计由

count($_FILES['files']['name']);

字符串 'name' 可以替换为 'tmp_name', 'error', 'size', 'type'

您使用的库在首次执行时已将文件上传到您的上传路径。所以你应该在上传之前手动检查它。

  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
    ));
    if (isset($_FILES['files']['name'])) {
      $num = count($_FILES['files']['name']);
    }

        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');
      }

希望这可以帮助

于 2013-05-11T22:41:58.697 回答