Lines Matching refs:locale
2 Test setlocale() function : usage variations - Setting system locale as empty string
16 /* Prototype : string setlocale (int $category , string $locale [,string $..] )
17 * : string setlocale(int $category , array $locale);
18 * Description: Sets locale information.Returns the new current locale , or FALSE
19 * if locale functinality is not implemented in this platform.
23 /* If locale is empty string "", the locale names will be set from the values of environment variab…
25 echo "*** Testing setlocale() : usage variations - setting system locale = \"\" ***\n";
27 //initially setting the locale
30 echo "Locale info, before setting the locale\n";
32 //returns current locale,before executing setlocale() .
37 //Testing setlocale() by giving locale = null
38 echo "Setting system locale, category = LC_ALL and locale = \"\"\n";
41 echo "Locale info, after setting the locale\n";
43 //Returns Current locale,after executing setlocale().
48 echo "Checking new locale in the system, Expected : the locale names will be set from the values of…
59 *** Testing setlocale() : usage variations - setting system locale = "" ***
60 Locale info, before setting the locale
109 Setting system locale, category = LC_ALL and locale = ""
110 Locale info, after setting the locale
159 Checking new locale in the system, Expected : the locale names will be set from the values of envir…