php man page for locale_get_display_variant

Query: locale_get_display_variant

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

LOCALE_GET_DISPLAY_VARIANT(3)						 1					     LOCALE_GET_DISPLAY_VARIANT(3)

Locale::getDisplayVariant - Returns an appropriately localized display name for variants of the input locale

	Object oriented style

SYNOPSIS
publicstatic string Locale::getDisplayVariant (string $locale, [string $in_locale])
DESCRIPTION
Procedural style string locale_get_display_variant (string $locale, [string $in_locale]) Returns an appropriately localized display name for variants of the input locale. If is NULL then the default locale is used.
PARAMETERS
o $locale - The locale to return a display variant for o $in_locale - Optional format locale to use to display the variant name
RETURN VALUES
Display name of the variant for the $locale in the format appropriate for $in_locale.
EXAMPLES
Example #1 locale_get_display_variant(3) example <?php echo locale_get_display_variant('sl-Latn-IT-nedis', 'en'); echo "; "; echo locale_get_display_variant('sl-Latn-IT-nedis', 'fr'); echo "; "; echo locale_get_display_variant('sl-Latn-IT-nedis', 'de'); ?> Example #2 OO example <?php echo Locale::getDisplayVariant('sl-Latn-IT-nedis', 'en'); echo "; "; echo Locale::getDisplayVariant('sl-Latn-IT-nedis', 'fr'); echo "; "; echo Locale::getDisplayVariant('sl-Latn-IT-nedis', 'de'); ?> The above example will output: Natisone dialect; dialecte de Natisone; NEDIS
SEE ALSO
locale_get_display_name(3), locale_get_display_language(3), locale_get_display_script(3), locale_get_display_region(3). PHP Documentation Group LOCALE_GET_DISPLAY_VARIANT(3)
Related Man Pages
locale_get_display_name(3) - php
locale_get_display_script(3) - php
locale_get_keywords(3) - php
locale_get_primary_language(3) - php
resourcebundle_create(3) - php
Similar Topics in the Unix Linux Community
Need to display sorted output on 1 line!
How to display an error msg?
How to compare current time with the input to variant?
accept input on an echo output
Display number from 10 to 1 using shell programming in while loop