Ben ZendFramework-1.0.4 kullanarak yaşıyorum ve ben $ _file küresel değişkeni sarmak yok nasıl bir fikrim yok.
Benim Controller doğrudan kullanmak iyi bir fikir mi?
Ben bir resim dosyası yükle gerekir.
Ben whish gibi $_FILES
kullanabilirsiniz varsayalım.
Yine de emin olmak için en iyi yolu gibi bir şey kullanmak için
var_dump($_FILES);
bir yerde size denetleyicisi; Eğer beklediğiniz içeriyorsa bu şekilde görürsünüz ;-)
Ardından, is_uploaded_file
; and, you can use move_uploaded_file
a> dosyayı işlemek için kullanmak unutmayın.
Still, if you are using forms, you could take a look at Zend_Form
and Zend_Form_Element_File
, which will do some work for you.
Hu... Actually : not sure those were present in ZF 1.0.x :-(
As a sidenote : Zend Framework 1.0.4 is quote old (was released in frebruary 2008 ; see the archives page) ; it is no longer maintained, and there have been several versions released since. Would it not be useful for you to update ?
(Would probably require some work, though, for such an update, as lots of things have changed... But there are many components that have been added, and could be useful for your project, too ;-) )