フレームワークでフォームを送信するときに、正規表現で電子メール アドレスを検証しようとしましたSymfony2
。クラスcheckMX and checkHost
内でプロパティを使用しました。Entity
これで完了です。しかし、私はそれを正規表現で検証できませんでした....誰かを助けてください...これが私のコードスニペットです.. {,$,#,!,^
<?php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* product1
*/
class product1
{
/**
* @var int
*/
private $id;
/**
* @var string
* @Assert\Email(
*
* checkHost= true,
* checkMX = true,
* message="Invalid email host"
*
*
* )
* @Assert\Email(
* strict=false,
* message="invalid"
* )
*
*/
private $email;
/**
* Get id
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Set email
*
* @param string $email
*
* @return product1
*/
public function setEmail($email)
{
$this->email = $email;
return $this;
}
/**
* Get email
*
* @return string
*/
public function getEmail()
{
return $this->email;
}
}