PHP Doku:: Get supported locales - resourcebundle.locales.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzUnterstützung menschlicher Sprache und ZeichenkodierungInternationalization FunctionsThe ResourceBundle classResourceBundle::getLocales -- resourcebundle_locales

Ein Service von Reinhard Neidl - Webprogrammierung.

The ResourceBundle class

<<ResourceBundle::get -- resourcebundle_get

Grapheme Funktionen>>

ResourceBundle::getLocales

resourcebundle_locales

(No version information available, might only be in SVN)

ResourceBundle::getLocales -- resourcebundle_localesGet supported locales

Beschreibung

Object oriented style

array ResourceBundle::getLocales ( void )

Procedural style

array resourcebundle_locales ( ResourceBundle $r )

Get the list of locales supported by the bundle. The list is taken from the bundle table named res_index which should contain a table named InstalledLocales, which contains locales as keys. This bundle should be either in data directory as .res file or part of the .dat file for this function to work.

Parameter-Liste

r

ResourceBundle object.

Rückgabewerte

Returns the list of locales supported by the bundle.

Beispiele

Beispiel #1 resourcebundle_locales() example

<?php
$r 
resourcebundle_create'es'"/usr/share/data/myapp");
echo 
join("\n"resourcebundle_locales($r));
?>

Beispiel #2 OO example

<?php
$r 
= new ResourceBundle'es'"/usr/share/data/myapp");
echo 
join("\n"$r->getLocales());
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

es
root

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