IDN 函数
PHP Manual

idn_to_ascii

(PHP 5 >= 5.3.0, PECL intl >= 1.0.2, PECL idn >= 0.1)

idn_to_asciiConvert domain name to IDNA ASCII form.

说明

Procedural style

string idn_to_ascii ( string $domain [, int $options ] )

This function converts Unicode domain name to IDNA ASCII-compatible format.

参数

domain

Domain to convert. In PHP 5 must be UTF-8 encoded.

options

Conversion options - combination of IDNA_* constants.

返回值

Domain name encoded in ASCII-compatible form. 或者在失败时返回 FALSE

范例

Example #1 idn_to_ascii() example

<?php

echo idn_to_ascii('täst.de'); 

?>

以上例程会输出:

xn--tst-qla.de

参见


IDN 函数
PHP Manual