10 code snippets for PHP developers
I’ve compiled a small list of some useful code snippets which might help you when writing your PHP scripts…
Email address check
Checks for a valid email address using the php-email-address-validation class.
Source and docs: http://code.google.com/p/php-email-address-validation/
include(’EmailAddressValidator.php’);
$validator = new EmailAddressValidator;
if ($validator->check_email_address(’[email protected]’)) {
// Email address is technically valid
}
else {
// Email not valid
}
Random [...]