PHP code example of dominicsayers / isemail
1. Go to this page and download the library: Download dominicsayers/isemail library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dominicsayers / isemail example snippets
if (is_email($email)) echo "$email is a valid email address";
$email = '[email protected]';
$result = is_email($email, true, true);
if ($result === ISEMAIL_VALID) {
echo "$email is a valid email address";
} else if ($result < ISEMAIL_THRESHOLD) {
echo "Warning! $email has unusual features (result code $result)";
} else {
echo "$email is not a valid email address (result code $result)";
}