Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 zend 框架 2,我需要在验证之前编辑表单中的数据。
使用此功能,我将从 post 方法中获取数据,但不知道如何编辑它,因为对象是受保护的类型
$request = $this->getRequest();
$data = $request->getPost();
并用它做你想做的事......
那么你可以这样做:
$form->setData($data);