Is there a PHP library for email address validation? [closed]

Have you looked at PHP’s filter_ functions? They’re not perfect, but they do a fairly decent job in my experience.

Example usage (returns boolean):

filter_var($someEmail, FILTER_VALIDATE_EMAIL);

Leave a Comment