check email exist or not wordpress

PHP
$email = '[email protected]';
$exists = email_exists( $email );
if ( $exists ) {
    echo "That E-mail is registered to user number " . $exists;
} else {
    echo "That E-mail doesn't belong to any registered users on this site";
}
Source

Also in PHP: