我的情况是我必须上传文件并向服务器发送ID(文本/数字类型)。如果我使用zend_file_transfer_adapter_http
,我是否可以在服务器端获取ID和文件?
答案 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
}