可以zend_file_transfer_adapter_http接收其他参数(文本)吗?

时间:2015-10-19 14:10:17

标签: php file zend-framework file-upload

我的情况是我必须上传文件并向服务器发送ID(文本/数字类型)。如果我使用zend_file_transfer_adapter_http,我是否可以在服务器端获取ID和文件?

1 个答案:

答案 0 :(得分:1)

Zend_File_Transfer_Adapter_http仅用于上传文件。如果您还需要传递其他数据,您仍然可以使用隐藏的输入字段。

$request = $this->getRequest();
if ($request->isPost()){
    $id = $request->getPost('id');

    // Do whatever you need to do with the file and id
}