Validate an E-Mail Address with PHP

PHP email validation function

return (preg_match('/[a-zA-Z0-9-.+]+@[a-zA-Z0-9-]+.[a-zA-Z]+/', $email) > 0);