Files
piratepoet/mailpoet/lib/Util/SecondLevelDomainNames.php
Jan Jakes 9f790efbf0 Move plugin files to a subfolder
[MAILPOET-3988]
2022-01-18 15:30:22 +01:00

13 lines
229 B
PHP

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