Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

locale_get_display_region(3) [php man page]

LOCALE_GET_DISPLAY_REGION(3)						 1					      LOCALE_GET_DISPLAY_REGION(3)

Locale::getDisplayRegion - Returns an appropriately localized display name for region of the input locale

	Object oriented style

SYNOPSIS
publicstatic string Locale::getDisplayRegion (string $locale, [string $in_locale]) DESCRIPTION
Procedural style string locale_get_display_region (string $locale, [string $in_locale]) Returns an appropriately localized display name for region of the input locale. If is NULL then the default locale is used. PARAMETERS
o $locale - The locale to return a display region for. o $in_locale - Optional format locale to use to display the region name RETURN VALUES
display name of the region for the $locale in the format appropriate for $in_locale. EXAMPLES
Example #1 locale_get_display_region(3) example <?php echo locale_get_display_region('sl-Latn-IT-nedis', 'en'); echo "; "; echo locale_get_display_region('sl-Latn-IT-nedis', 'fr'); echo "; "; echo locale_get_display_region('sl-Latn-IT-nedis', 'de'); ?> Example #2 OO example <?php echo Locale::getDisplayRegion('sl-Latn-IT-nedis', 'en'); echo "; "; echo Locale::getDisplayRegion('sl-Latn-IT-nedis', 'fr'); echo "; "; echo Locale::getDisplayRegion('sl-Latn-IT-nedis', 'de'); ?> The above example will output: Italy; Italie; Italien SEE ALSO
locale_get_display_name(3), locale_get_display_language(3), locale_get_display_script(3), locale_get_display_variant(3). PHP Documentation Group LOCALE_GET_DISPLAY_REGION(3)

Check Out this Related Man Page

LOCALE_PARSE(3) 							 1							   LOCALE_PARSE(3)

Locale::parseLocale - Returns a key-value array of locale ID subtag elements.

	Object oriented style

SYNOPSIS
publicstatic array Locale::parseLocale (string $locale) DESCRIPTION
Procedural style array locale_parse (string $locale) Returns a key-value array of locale ID subtag elements. PARAMETERS
o $locale - The locale to extract the subtag array from. Note: The 'variant' and 'private' subtags can take maximum 15 values whereas 'ext- lang' can take maximum 3 values. RETURN VALUES
Returns an array containing a list of key-value pairs, where the keys identify the particular locale ID subtags, and the values are the associated subtag values. The array will be ordered as the locale id subtags e.g. in the locale id if variants are '-varX-varY-varZ' then the returned array will have variant0=>varX , variant1=>varY , variant2=>varZ EXAMPLES
Example #1 locale_parse(3) example <?php $arr = locale_parse('sl-Latn-IT-nedis'); if ($arr) { foreach ($arr as $key => $value) { echo "$key : $value , "; } } ?> Example #2 OO example <?php $arr = Locale::parseLocale('sl-Latn-IT-nedis'); if ($arr) { foreach ($arr as $key => $value) { echo "$key : $value , "; } } ?> The above example will output: language : sl , script : Latn , region : IT , variant0 : NEDIS , SEE ALSO
locale_compose(3). PHP Documentation Group LOCALE_PARSE(3)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Need to display sorted output on 1 line!

#!/bin/bash { && ; } || { echo "Must enter between 1 and 5 parameters" exit 1 } for P do echo $P >> /tmp/task3 done echo "SORTED: $(sort -n -r /tmp/task3)" rm -f /tmp/task3 (2 Replies)
Discussion started by: knc9233
2 Replies

2. Shell Programming and Scripting

shell script

hi, Can any body pls tell the what the following second statement does. region="$(dirname $1)" mixedregion="$(echo ${region%${region#?}} | tr ']' ']')\ $(echo ${region#?} | tr ']' ']')" cheers RRK (3 Replies)
Discussion started by: ravi raj kumar
3 Replies

3. Shell Programming and Scripting

add a string in the middle of the file

i want to add a string in a very top of a file without using VI or SED or AWK this is what ive done: (echo '0a'; echo 'LINE OF TEXT'; echo '.'; echo 'wq') | ed -s myfile to add astrng right in the middle i could have count the lines of the file and just chenge the address. ... (6 Replies)
Discussion started by: ciroredz
6 Replies

4. Shell Programming and Scripting

how to display only last character of a string?

hi all, if i do an: "echo $string |" what should be after the pipe to display ONLY the last char of the output? tia, DN2 (9 Replies)
Discussion started by: DukeNuke2
9 Replies

5. UNIX for Dummies Questions & Answers

variable

do not know why this piece of code does not work echo "enter input" read input if ; then echo the input is abc else echo the input is wrong fi thanks for the help (2 Replies)
Discussion started by: christine33990
2 Replies

6. Shell Programming and Scripting

How to display an error msg?

Hi friends, Please suggest a solution for this. A script has following things. echo "Enter P for PML" echo "Enter V for VVL" echo "Enter L for LNL" echo "Enter G for GDL" read choice echo ${choice} >> LOG_Daily.txt if operator enters anything other that P/V/L/G it should show an... (8 Replies)
Discussion started by: anushree.a
8 Replies

7. UNIX for Dummies Questions & Answers

echo $ problem

Hi I am using tcsh. I want display in a file_1 like this. $VARIBALE I gave in a termianl > echo "\$VARIBALE" > file_1 Its not workning. It was giving VARIBALE: Undefined variable. I gave \ before $, but why it was giving undefined varible? Please help me. Thanks in advance (4 Replies)
Discussion started by: chaitubek
4 Replies

8. UNIX for Dummies Questions & Answers

display problem

hi i have written a script #!/bin/sh clear menu() { ...... echo "enter 4 for finding text in a files" echo "input: \c" } switch() { read input case $input in ....... 4) echo "find" (1 Reply)
Discussion started by: the.noob
1 Replies

9. Shell Programming and Scripting

Question about user input

Hello all, How can i have a user input that reads like this: echo -n "Please enter a & b:" 10 20 read a read b echo $a echo $b 10 20 right now i have divided it into two echos, like echo -n "a: " echo -n "b: " (1 Reply)
Discussion started by: rrahmegni
1 Replies

10. Solaris

Locale woes

Greetings Forumers! I've been fighting a locale problem on a v490 running Solaris 10 u4 (8/07). When I login to the system, I get several "locale" error messages: user1's password: Last login: Wed May 26 2010 09:14:13 -0400 from system1 You have mail. couldn't set locale correctly couldn't... (0 Replies)
Discussion started by: bluescreen
0 Replies

11. Shell Programming and Scripting

echo display problem

Hi I am facing a strange problem a=03 echo ${a} the output is 3 But i want to display it is 03 Can you people help me how to display it like 03. Thanks (2 Replies)
Discussion started by: aishsimplesweet
2 Replies

12. Shell Programming and Scripting

Column format using echo in aix

Hi Friends, I have the following values in echo "$csi_tas_id" echo "$platform" echo "$region" I want to display these values as shown below: CSI_TAS_ID | PLATFORM | REGION 123 | UNIX | SG 231 | AIX ... (1 Reply)
Discussion started by: dbashyam
1 Replies

13. Shell Programming and Scripting

accept input on an echo output

echo (some info) read? <&1(not working for me) (1 Reply)
Discussion started by: robin_simple
1 Replies

14. Shell Programming and Scripting

display echo only once

lets say I am printing something out echo "Please enter a valid username" and its being printed out 5 times, is there any way I can limit to only being displayed ONCE. I tried echo -n but that just makes everything fit on one line. Right now it keeps saying Please enter a valid... (5 Replies)
Discussion started by: subway69
5 Replies

15. UNIX for Dummies Questions & Answers

UNIX fun stuff - echo and dc - obfuscate/garble a string sort of

Hi, Humorous UNIX Commands shows a fun way of using echo and dc to sort of obfuscate a string. % echo 'sasb3135071790101768542287578439snlbxq'|dc GET A LIFE! I am just wanting to know if there is a way to sort of use dc and echo to print out an obfuscated/garbled string instead... (3 Replies)
Discussion started by: newbie_01
3 Replies