Lines Matching refs:locale
2 Test setlocale() function : usage variations - setting system locale as null
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 functionality is not implemented in this platform.
23 /*If locale is NULL, the locale names will be set from the values of environment variables with the…
25 echo "*** Testing setlocale() : usage variations - Setting system locale = null ***\n";
27 //initially setting the locale
30 echo "Locale info, before setting the locale\n";
31 //returns current locale,before executing setlocale() .
35 //Testing setlocale() by giving locale = null
36 echo "Setting system locale, category = LC_ALL and locale = null\n";
39 echo "Locale info, after setting the locale\n";
40 //Returns Current locale,after executing setlocale().
44 echo "Checking new locale in the system, Expected : the locale names will be set from the values of…
55 *** Testing setlocale() : usage variations - Setting system locale = null ***
56 Locale info, before setting the locale
105 Setting system locale, category = LC_ALL and locale = null
106 Locale info, after setting the locale
155 Checking new locale in the system, Expected : the locale names will be set from the values of envir…