PHP Doku:: Convert domain name from IDNA ASCII to Unicode. - function.idn-to-utf8.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzUnterstützung menschlicher Sprache und ZeichenkodierungInternationalization FunctionsIDN Funktionenidn_to_utf8

Ein Service von Reinhard Neidl - Webprogrammierung.

IDN Funktionen

<<idn_to_unicode

intl Funktionen>>

idn_to_utf8

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

idn_to_utf8Convert domain name from IDNA ASCII to Unicode.

Beschreibung

Procedural style

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

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

Parameter-Liste

domain

Domain to convert in IDNA ASCII-compatible format.

options

Conversion options - combination of IDNA_* constants.

Rückgabewerte

Domain name in Unicode. In PHP5, domain name will be in UTF-8. Im Fehlerfall wird FALSE zurückgegeben.

Beispiele

Beispiel #1 idn_to_utf8() example

<?php

echo idn_to_utf8('xn--tst-qla.de'); 

?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

täst.de

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)