有人可以幫助這個?
爲symfony1.2 2.0沒有正常機制的文檔,但(因爲它不是穩定)如何驗證電子郵件在symfony 2.0(表格)
我在PHP中使用的symfony
class SignupForm extends Form {
public $email;
public function configure() {
$this->add(new TextField('email', array('required' => true)));
}
}
在這段代碼的意思是,我需要增加一些選項,以驗證電子郵件字段
所以,你要驗證的電子郵件地址是有效的? – random 2011-03-19 05:13:52
是的,像這樣'$ this-> add(new TextField('email',array('validator'=>/* some validator class * /)));',但這不起作用,它會引發異常'驗證器'是未知選項 – azat 2011-03-19 06:22:30