OhDns is a DNS record lookup library for PHP.
See test.php
for examples of retrieving DNS records by type.
Additionally, this library provides a more advanced email validation by verifying the MX records associated to the domain actually exist.
<?php
$valid = \OhDns\Validators\EmailAddressValidator::isValid(
'[email protected]'
);
if ($valid) {
echo ' YES: [email protected] is a valid email address.';
} else {
echo ' NO: [email protected] is NOT a valid email address.';
}
composer require rogerthomas84/ohdns