Programming Examples

ChilkatHOMEASPVisual BasicVB.NETC#CC++MFCDelphiFoxProJavaPerlPythonRubySQL ServerVBScript

PHP ActiveX Examples

Bounced Mail
Bz2
Certificates/Keys
Charset
CSV
DKIM / DomainKey
Diffie-Hellman
DSA
Email Object
Encryption
FileAccess
FTP
HTML Conversion
HTTP
IMAP
MHT / HTML Email
MIME
NTLM
POP3
RSA
SMTP
Socket
Spider
SSH Key
SSH
SSH Tunnel
SFTP
Tar
Upload
XML
Zip
Amazon S3


 

 

 

 

 

 

 

 

GetBaseDomain

The GetBaseDomain method is a utility function that converts a domain into a "domain base", which is useful for grouping URLs. For example: abc.chilkatsoft.com, xyz.chilkatsoft.com, and blog.chilkatsoft.com all have the same base domain: chilkatsoft.com. Things get more complicated when considering country domains (.au, .uk, .se, .cn, etc.) and government, state, and .us domains. Also, domains such as blogspot, tripod, geocities, wordpress, etc, are treated specially so that "xyz.blogspot.com" has a base domain of "xyz.blogspot.com". Note: If you find other domains that should be treated similarly to blogspot.com, send a request to support@chilkatsoft.com.

Download Chilkat Spider ActiveX

<?php

//  The Chilkat Spider component/library is free.
$spider = new COM("Chilkat.Spider");

print $spider->getBaseDomain('www.chilkatsoft.com') . "\n";
print $spider->getBaseDomain('blog.chilkatsoft.com') . "\n";
print $spider->getBaseDomain('www.news.com.au') . "\n";
print $spider->getBaseDomain('blogs.bbc.co.uk') . "\n";
print $spider->getBaseDomain('xyz.blogspot.com') . "\n";
print $spider->getBaseDomain('www.heaids.org.za') . "\n";
print $spider->getBaseDomain('www.hec.gov.pk') . "\n";
print $spider->getBaseDomain('www.e-mrs.org') . "\n";
print $spider->getBaseDomain('cra.curtin.edu.au') . "\n";

//  Prints:
//  chilkatsoft.com
//  chilkatsoft.com
//  news.com.au
//  bbc.co.uk
//  xyz.blogspot.com
//  heaids.org.za
//  hec.gov.pk
//  e-mrs.org
//  curtin.edu.au

?>

Need a specific example? Send a request to support@chilkatsoft.com

© 2000-2010 Chilkat Software, Inc. All Rights Reserved.