advanced code snippet search
wbowers on 02/28/08
regex email php textmate method function validation
03/10/08 08:02pm02/28/08 05:01am02/28/08 05:00am
function is_valid_email($email){ return preg_match("/[a-zA-Z0-9_-.+]+@[a-zA-Z0-9_-.]+.[a-zA-Z]+/", $email) > 0;}
Report this snippet Tweet
Comment:
You need to login to post a comment.