本文整理匯總了PHP中Zend_Validate_EmailAddress::setDeepMxCheck方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Validate_EmailAddress::setDeepMxCheck方法的具體用法?PHP Zend_Validate_EmailAddress::setDeepMxCheck怎麽用?PHP Zend_Validate_EmailAddress::setDeepMxCheck使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend_Validate_EmailAddress
的用法示例。
在下文中一共展示了Zend_Validate_EmailAddress::setDeepMxCheck方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: init
public function init()
{
$this->name = new Zend_Form_Element_Text('name');
$this->new_password = new Zend_Form_Element_Password('new_password');
$this->confirm_password = new Zend_Form_Element_Password('confirm_password');
$this->email = new Zend_Form_Element_Text('email');
$this->biography = new Zend_Form_Element_Textarea('biography');
$this->submit = new Zend_Form_Element_Submit('submit');
$email_validator = new Zend_Validate_EmailAddress();
$email_validator->setDeepMxCheck(false);
$email_validator->setDomainCheck(false);
$email_validator->setMessages(array(Zend_Validate_EmailAddress::INVALID_FORMAT => "Format Email Salah"));
$confirm_password_validator = new Zend_Validate_Identical();
$confirm_password_validator->setMessage("Kata sandi tidak cocok.");
$this->biography->setAttribs(array('style' => 'width:100%;height:240px'));
$this->name->setAttribs(array('class' => 'span6', 'placeholder' => 'Nama lengkap anda'));
$this->email->addValidator($email_validator)->setAttribs(array('class' => 'span4', 'placeholder' => 'pengguna@contoh.com'));
$this->submit->setAttribs(array('class' => 'btn btn-success'))->setLabel('Simpan');
$this->confirm_password->addValidator($confirm_password_validator);
$this->addElements(array($this->name, $this->new_password, $this->confirm_password, $this->email, $this->biography, $this->submit));
$this->setElementDecorators(array('ViewHelper', 'Errors'));
}