if ($this>getRequest()>isPost()) {

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);

原文地址:https://www.cnblogs.com/xuyaoxiang/p/3081699.html