Your IP : 216.73.216.95


Current Path : /var/www/html/newsite/wp-content/plugins/mailpoet/lib/Util/
Upload File :
Current File : /var/www/html/newsite/wp-content/plugins/mailpoet/lib/Util/SecondLevelDomainNames.php

<?php

namespace MailPoet\Util;

if (!defined('ABSPATH')) exit;


class SecondLevelDomainNames {
  public function get($host) {
    if (preg_match('/[^.]*\.[^.]{2,3}(?:\.[^.]{2,3})?$/', $host, $matches)) {
      return $matches[0];
    }
    return $host;
  }
}