PHP Doku:: Gets the script for the input locale - locale.getscript.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzUnterstützung menschlicher Sprache und ZeichenkodierungInternationalization FunctionsThe Locale classLocale::getScript -- locale_get_script

Ein Service von Reinhard Neidl - Webprogrammierung.

The Locale class

<<Locale::getRegion -- locale_get_region

Locale::lookup -- locale_lookup>>

Locale::getScript

locale_get_script

(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)

Locale::getScript -- locale_get_scriptGets the script for the input locale

Beschreibung

Object oriented style

static string Locale::getScript ( string $locale )

Procedural style

string locale_get_script ( string $locale )

Gets the script for the input locale.

Parameter-Liste

locale

The locale to extract the script code from

Rückgabewerte

The script subtag for the locale or NULL if not present

Beispiele

Beispiel #1 locale_get_script() example

<?php
echo locale_get_script('sr-Cyrl');
?>

Beispiel #2 OO example

<?php
echo Locale::getScript('sr-Cyrl');
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Cyrl

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",...)