PHP code example of rogerthomas84 / ohdns

1. Go to this page and download the library: Download rogerthomas84/ohdns 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/ */

    

rogerthomas84 / ohdns example snippets



$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.';
}