Example #1
0
File: Url.php Project: bulats/chef
 /**
  * Compares URL objects to determine if either of them are a subdomain of the other.
  * 
  * @param WordPressHTTPS_Url $url
  * @return boolean
  */
 public function isSubdomain(WordPressHTTPS_Url $url)
 {
     $this_host = $this->getBaseHost();
     $other_host = $url->getBaseHost();
     if ($this_host == $other_host) {
         return true;
     }
     return false;
 }