Zend Framework中,如何由Controller向Zend_Form传值

[php]
// Controller中为Form传递值
public function ***Action()
{
$form = new Application_Form_Category(array(‘fid’=>1));
$this->view->form = $form;
}
[/php]

[php]
// Form中获得值
$this->getAttrib(‘fid’);
[/php]



发表评论

邮箱地址不会被公开。