vote up 0 vote down star

Zend Framework makes development a lot easier; for instance there is a getPost function from the Zend_Http that handles POST parameters.

Is there anything similar to handle file uploads? I can access $_FILES directly, but I would rather use a built in function to keep things consistent.

flag

73% accept rate

3 Answers

vote up 3 vote down check

Hi, you can use Zend_Form_Element_File, it has very similar functionality as Zend_File_Transfer and it works without any problems.

http://framework.zend.com/manual/en/zend.form.standardElements.html#zend.form.standardElements.file

link|flag
vote up 1 vote down

Read about Zend_File_Transfer. Does that do what you need?

link|flag
I just tried that, and to my surprise it throws an exception saying 'Implementation in Progress'. Though the documentation seems complete? – Marcel Tjandraatmadja Feb 18 at 9:06
Sounds like you should use Zend_Form_Element_File as @da5id and @harvejs have suggested. – Bill Karwin Feb 18 at 16:29
vote up 1 vote down

You can do file uploads with Zend_Form. Tutorial here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.