You appear to be a bot. Output may be restricted
Description
Usage
bob_domain_name_test( $domain );
Parameters
- $domain
- ( mixed ) required –
Returns
voidSource
File name: oik-batch/oik-site.phpLines:
1 to 16 of 16
function bob_domain_name_test( $domain ) { //e("This is the domain name test" ); $recordexists = dns_check_record( $domain, "ANY"); if ($recordexists) { e( "The domain name is registered: " . $domain ) ; $result = true; } else { e( "The domain name is not registered: " . $domain ); $result = true; } return( $result ); }View on GitHub