我在手册中看到了很多关于创建表单来上传文件的问题和信息。我已经能够设置一个表单来处理文件上传。下载文件后是否有任何基于 Zend 的代码来处理文件。
每个教程或手册参考似乎都有类似的内容:
if ($form->isValid()) {
//
// ...Save the form...
//
}
我可以使用原生 php 函数(如move_uploaded_file
. 我是否遗漏了什么,或者 Zend 只是回退到使用临时文件名作为其他代码中的数据?
我在手册中看到了很多关于创建表单来上传文件的问题和信息。我已经能够设置一个表单来处理文件上传。下载文件后是否有任何基于 Zend 的代码来处理文件。
每个教程或手册参考似乎都有类似的内容:
if ($form->isValid()) {
//
// ...Save the form...
//
}
我可以使用原生 php 函数(如move_uploaded_file
. 我是否遗漏了什么,或者 Zend 只是回退到使用临时文件名作为其他代码中的数据?
说明书上有
http://framework.zend.com/manual/2.1/en/modules/zend.form.file-upload.html
// File: MyController.php
public function uploadFormAction()
{
$form = new UploadForm('upload-form');
if ($this->getRequest()->isPost()) {
// Make certain to merge the files info!
$post = array_merge_recursive(
$this->getRequest()->getPost()->toArray(),
$this->getRequest()->getFiles()->toArray()
);
$form->setData($post);
if ($form->isValid()) {
$data = $form->getData();
// Form is valid, save the form!
return $this->redirect()->toRoute('upload-form/success');
}
}
return array('form' => $form);
}
文件上传成功后,$form->getData() 将返回:
array(1) {
["image-file"] => array(5) {
["name"] => string(11) "myimage.png"
["type"] => string(9) "image/png"
["tmp_name"] => string(22) "/private/tmp/phpgRXd58"
["error"] => int(0)
["size"] => int(14908679)
}
}
使用您从中获得的数组$form->getData()
来处理上传的文件。
您还可以使用名为的过滤器设置目标并重命名它。
下面的链接对此有很好的解释:
希望这可以帮助。