mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-03 14:37:02 +03:00
13 lines
277 B
PHP
13 lines
277 B
PHP
<?php
|
|
|
|
if (!\function_exists('idn_to_ascii')) {
|
|
function idn_to_ascii(string $domain) {
|
|
return \SnappyMail\Intl\Idn::toAscii($domain);
|
|
}
|
|
}
|
|
|
|
if (!\function_exists('idn_to_utf8')) {
|
|
function idn_to_utf8(string $domain) {
|
|
return \SnappyMail\Intl\Idn::toUtf8($domain);
|
|
}
|
|
}
|