File Upload using zend framework 1.7.4

后端 未结 3 613
無奈伤痛
無奈伤痛 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:50

    The link you posted is just a general Zend Framework tutorial, and hasn't been updated past ZF 1.5.

    Anyway, once you get started with Zend, this is a sample of the code you would use to receive an upload. The form doing the posting must have the correct file upload components.

    //validate file
    //for example, this checks there is exactly 1 file, it is a jpeg and is less than 512KB
    $upload = new Zend_File_Transfer_Adapter_Http();
    $upload->addValidator('Count', false, array('min' =>1, 'max' => 1))
           ->addValidator('IsImage', false, 'jpeg')
           ->addValidator('Size', false, array('max' => '512kB'))
           ->setDestination('/tmp');
    
    if (!$upload->isValid()) 
    {
        throw new Exception('Bad image data: '.implode(',', $upload->getMessages()));
    }
    
    try {
            $upload->receive();
    } 
    catch (Zend_File_Transfer_Exception $e) 
    {
            throw new Exception('Bad image data: '.$e->getMessage());
    }
    
    //then process your file, it's path is found by calling $upload->getFilename()
    

提交回复
热议问题