Phalcon\Mailer\Manager::punycode PHP Метод

punycode() защищенный Метод

Convert UTF-8 encoded domain name to ASCII
protected punycode ( $str ) : string
$str
Результат string
    protected function punycode($str)
    {
        if (function_exists('idn_to_ascii')) {
            return idn_to_ascii($str);
        } else {
            return $str;
        }
    }