我希望zend形式覆蓋setValue函數,以便可以操作賦予該函數的值。我怎樣才能實現這個?以zend形式覆蓋setValue
我目前的形式結構是這樣的:
class My_Form_Login
{
public $Form;
public $Username;
public function __construct()
{
$this->Form = new Form_Abstract();
$this->init();
}
public function init()
{
$this->Username ->setValue('100');
}
}
class Form_Abstract extends Zend_Form
{
public function __construct($options = null)
{
parent::__construct($options);
$this->setDecorators(array( 'FormElements','FormErrors','Form'));
}
public function setValue($value)
{
$strippedValue = stripslashes($value);
return parent::setValue($strippedValue);
}
}
在此先感謝..
你嘗試過什麼已經經過然後將此你的元素呢? – martynthewolf 2011-05-23 10:26:33