本文整理汇总了PHP中Zend_Validate_EmailAddress::setDomainCheck方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Validate_EmailAddress::setDomainCheck方法的具体用法?PHP Zend_Validate_EmailAddress::setDomainCheck怎么用?PHP Zend_Validate_EmailAddress::setDomainCheck使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Validate_EmailAddress
的用法示例。
在下文中一共展示了Zend_Validate_EmailAddress::setDomainCheck方法的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'));
}