File Upload using zend framework 1.7.4

后端 未结 3 596
無奈伤痛
無奈伤痛 2020-12-14 05:16

I am trying to upload a file using Zend Framework 1.7.4, but have not been successful. I have read Akrabat\'s tutorial, which was helpful but when i used those techniques in

3条回答
  •  囚心锁ツ
    2020-12-14 05:44

        $this->setAction('/sandbox/example/form')->setEnctype('multipart/form-data')->setMethod('post');
    
        $photo = new Zend_Form_Element_File('photo');
        $photo->setLabel('Photo:')->setDestination(APPLICATION_PATH ."/../public/tmp/upload");
    
        $this->addElement($photo);
    

    You can set any destination example $photo->setLabel('Photo:')->setDestination(APPLICATION_PATH ."/../data");

提交回复
热议问题