#native_company# #native_desc#
#native_cta#

Is Email

By Christopher del Rosario
on January 13, 2002

Version: 1.0

Type: Function

Category: Algorithms

License: GNU General Public License

Description: Email format validator 🙂

<?
function is_Email($em)
{
    if (preg_match("/^(w+((-w+)|(w.w+))*)@(w+((.|-)w+)*.w+$)/",$em))
       return true;
    else return false;
}
?>