Skip to content

Instantly share code, notes, and snippets.

@MikSDigital
Created March 21, 2017 09:06
Show Gist options
  • Save MikSDigital/766680cf1621228bcdf644b78c8f7458 to your computer and use it in GitHub Desktop.
Save MikSDigital/766680cf1621228bcdf644b78c8f7458 to your computer and use it in GitHub Desktop.
dbl
public function getIdByEmail($sEmail)
{
$aResult = $this->getEntityManager()
->createQuery("SELECT user.id FROM EducationBaseBundle:User user WHERE user.mail = :mail")
->setParameter('mail', $sEmail)
->getOneOrNullResult();
if (isset($aResult['id'])) {
return $aResult['id'];
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment