Нема описа

SecondLevelDomainNames.php 262B

12345678910111213141516
  1. <?php
  2. namespace MailPoet\Util;
  3. if (!defined('ABSPATH')) exit;
  4. class SecondLevelDomainNames {
  5. public function get($host) {
  6. if (preg_match('/[^.]*\.[^.]{2,3}(?:\.[^.]{2,3})?$/', $host, $matches)) {
  7. return $matches[0];
  8. }
  9. return $host;
  10. }
  11. }