DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Email Syntax Check
// Email syntax check
<?php
function check_email($email)
{
$atom = '[-a-z0-9!#$%&\'*+/=?^_`{|}~]'; // znaky tvoÅ™Ãcà uživatelské jméno
$domain = '[a-z0-9]([-a-z0-9]{0,61}[a-z0-9])'; // jedna komponenta domény
return eregi("^$atom+(\\.$atom+)*@($domain?\\.)+$domain\$", $email);
}
?>






Comments
Logan Koester replied on Sun, 2006/09/10 - 9:05pm