duanjiagu0655 2019-05-01 09:54
浏览 53
已采纳

如何在zend框架中将多个图像上传到数据库中

I have some code that store multiple image into directory but not inserting into database .please help me out. i am using table gateway. if anyone give me proper and easy way to insert multiple image into database.

this is my controller

StudentController.php

 public function addAction() {
    $form = new StudentForm();
    $request = $this->getRequest();
    if ($request->isPost()) {
        $student = new Student();
        $images=$this->convert_multi_array($request->getFiles()->toArray());
        $post = array_merge_recursive(
        $request->getPost()->toArray(),
        $request->getFiles()->toArray()
    );
          $form->setData($post);
        if ($form->isValid()) {

           $student->exchangeArray($form->getData());
            $this->getStudentTable()->saveStudent($student);
           // return $this->redirect()->toRoute('student');
            print_r($images);
           // print_r($post);
            echo "working";
        }else{
            echo "not working";
        }
    }
    return array('form' => $form,);
}

And this is Model Student.php

  public function getInputFilter() { 

      if (!$this->inputFilter) { 
         $inputFilter = new InputFilter(); 
         $factory     = new InputFactory();
         $inputFilter->add(
                $factory->createInput(array(
                    'name'     => 'image',
                    'required' => true,
                ))
            );
         $inputFilter->add(array( 
            'name' => 'name', 
            'required' => true, 
            'filters' => array( 
               array('name' => 'StripTags'), 
               array('name' => 'StringTrim'), 
            ), 
            'validators' => array( 
               array( 
                  'name' => 'StringLength', 
                  'options' => array( 
                     'encoding' => 'UTF-8', 
                     'min' => 1, 
                     'max' => 100, 
                  ), 
               ), 
            ), 
         )); 
         $inputFilter->add(array( 
            'name' => 'department', 
            'required' => true, 
            'filters' => array( 
               array('name' => 'StripTags'), 
               array('name' => 'StringTrim'), 
            ),  
            'validators' => array( 
               array( 
                  'name' => 'StringLength', 
                  'options' => array( 
                     'encoding' => 'UTF-8', 
                     'min' => 1, 
                     'max' => 100, 
                  ), 
               ), 
            ), 
         )); 
         $inputFilter->add(array( 
            'name' => 'marks', 
            'required' => true, 
            'filters' => array( 
               array('name' => 'StripTags'), 
               array('name' => 'StringTrim'), 
            ),  
            'validators' => array( 
               array( 
                  'name' => 'StringLength', 
                  'options' => array( 
                     'encoding' => 'UTF-8', 
                     'min' => 1, 
                     'max' => 100, 
                  ), 
               ), 
            ), 
         ));  
            $this->inputFilter = $inputFilter; 
      } 
      return $this->inputFilter; 

   }

And

public function exchangeArray($data){
        $this->id = (isset($data['id']))?$data['id']:null;
        //// image////
        if(!empty($data['image'])) { 
         if(is_array($data['image'])) { 
            $this->image = str_replace("./public/tmpuploads/", "", 
               $data['image']['tmp_name']); 
         } else { 
            $this->image = $data['image']; 
         } 
      } else { 
         $data['image'] = null; 
      } 
        $this->name = (isset($data['name']))?$data['name']:null;
        $this->department = (isset($data['department']))?$data['department']:null;
        $this->marks = (isset($data['marks']))?$data['marks']:null;
    }

 public function getArrayCopy() {
        return get_object_vars($this);
    }


my Student Form- StudentForm.php

namespace Student\Form;

use Zend\InputFilter;
use Zend\Form\Form;
use Zend\Form\Element;

class StudentForm extends Form {


         public function __construct($name = null, $options = array())
    {
        parent::__construct($name, $options);
        $this->addElements();
        $this->setInputFilter($this->createInputFilter());
    }
    public function addElements()
    {
        $image = new Element\File('image');

         $image->setLabel('Avatar Image Upload')
             ->setAttribute('id', 'image-file')
             ->setAttribute('multiple', true);  
        $this->add($image);

        $name = new Element\Text('name');
        $name->setLabel('Name');
        $this->add($name);
        $department = new Element\Text('department');
        $department->setLabel('Department');
        $this->add($department);
        $marks = new Element\Text('marks');
        $marks->setLabel('Marks');
        $this->add($marks);

    }
    public function createInputFilter()
    {
        $inputFilter = new InputFilter\InputFilter();
        // File Input
        $image = new InputFilter\FileInput('image');
        $image->setRequired(true);
        $image->getFilterChain()->attachByName(
            'filerenameupload',
            array(
                'target'          => './public/tmpuploads/',
                'overwrite'       => true,
                'use_upload_name' => true,
            )
        );
        $inputFilter->add($image);
        // Text Input
        $name = new InputFilter\Input('name');
        $name->setRequired(true);
        $inputFilter->add($name);
        // Text Input
        $department = new InputFilter\Input('department');
        $department->setRequired(true);
        $inputFilter->add($department);
        // Text Input
        $marks = new InputFilter\Input('marks');
        $marks->setRequired(true);
        $inputFilter->add($marks);


        return $inputFilter;
    }
}

`````
  • 写回答

1条回答 默认 最新

  • doutang1946 2019-05-01 10:22
    关注

    As i understand your code you have to first upload image and then you have to make comma separated string like this

    its only example code

    $imageString = '';
    for($i=0; $i<count($_FILES['file']['name']); $i++){
         $extension = explode('.', basename( $_FILES['file']['name'][$i]));
         $imageName = md5(uniqid()) . "." . $extension[count($extension)-1];
         $path = $path . $imageName; 
    
          if(move_uploaded_file($_FILES['file']['tmp_name'][$i], $path )) {
             $imageString .= $imageName.", ";
          } else{
            echo "Error in Upload";
           }
       }
    $imageName = rtrim($imageName,", ");
    

    // now you can use imageName in insert query.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀