Files
piratepoet/lib/Util/SecondLevelDomainNames.php
Pavel Dohnal 200a9b1edb Move unrelated code to own class
[MAILPOET-2397]
2019-10-23 17:34:07 +01:00

14 lines
223 B
PHP

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