Query: locale_get_display_script
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
LOCALE_GET_DISPLAY_SCRIPT(3) 1 LOCALE_GET_DISPLAY_SCRIPT(3) Locale::getDisplayScript - Returns an appropriately localized display name for script of the input locale Object oriented styleSYNOPSISpublicstatic string Locale::getDisplayScript (string $locale, [string $in_locale])DESCRIPTIONProcedural style string locale_get_display_script (string $locale, [string $in_locale]) Returns an appropriately localized display name for script of the input locale. If is NULL then the default locale is used.PARAMETERSo $locale - The locale to return a display script for o $in_locale - Optional format locale to use to display the script nameRETURN VALUESDisplay name of the script for the $locale in the format appropriate for $in_locale.EXAMPLESExample #1 locale_get_display_script(3) example <?php echo locale_get_display_script('sl-Latn-IT-nedis', 'en'); echo "; "; echo locale_get_display_script('sl-Latn-IT-nedis', 'fr'); echo "; "; echo locale_get_display_script('sl-Latn-IT-nedis', 'de'); ?> Example #2 OO example <?php echo Locale::getDisplayScript('sl-Latn-IT-nedis', 'en'); echo "; "; echo Locale::getDisplayScript('sl-Latn-IT-nedis', 'fr'); echo "; "; echo Locale::getDisplayScript('sl-Latn-IT-nedis', 'de'); ?> The above example will output: Latin; latin; LateinischSEE ALSOlocale_get_display_name(3), locale_get_display_language(3), locale_get_display_region(3), locale_get_display_variant(3). PHP Documentation Group LOCALE_GET_DISPLAY_SCRIPT(3)
Related Man Pages |
---|
locale_filter_matches(3) - php |
locale(3) - php |
locale_get_display_name(3) - php |
locale_get_display_language(3) - php |
locale_lookup(3) - php |
Similar Topics in the Unix Linux Community |
---|
why doesnt my script work!!! |
please help me in if command problem |
Redirect output of echo to a file |
Meaning of script with echo, -d, -f1, -f2 |
Cat command does not respect new line |