2015-10-19 44 views

回答

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 
} 
相關問題