summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/setlocale_basic1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/strings/setlocale_basic1.phpt')
-rw-r--r--ext/standard/tests/strings/setlocale_basic1.phpt28
1 files changed, 14 insertions, 14 deletions
diff --git a/ext/standard/tests/strings/setlocale_basic1.phpt b/ext/standard/tests/strings/setlocale_basic1.phpt
index c806e6fabf..08c4cf4424 100644
--- a/ext/standard/tests/strings/setlocale_basic1.phpt
+++ b/ext/standard/tests/strings/setlocale_basic1.phpt
@@ -1,5 +1,5 @@
--TEST--
-Test setlocale() function : basic functionality - setting system locale to a specific
+Test setlocale() function : basic functionality - setting system locale to a specific
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
@@ -12,16 +12,16 @@ if (setlocale(LC_ALL, "en_US.utf8", "en_AU.utf8", "ko_KR.utf8", "zh_CN.utf8", "d
--FILE--
<?php
/* Prototype : string setlocale (int $category , string $locale [,string $..] )
- : string setlocale(int $category , array $locale);
- * Description: Sets locale information.Returns the new current locale ,
- * or FALSE if locale functionality is not implemented in this platform.
+ : string setlocale(int $category , array $locale);
+ * Description: Sets locale information.Returns the new current locale ,
+ * or FALSE if locale functionality is not implemented in this platform.
* Source code: ext/standard/string.c
*/
/* test setlocale by specifying a specific locale as input */
/* Prototype : array list_system_locales( void )
- Description: To get the currently installed locle in this platform
+ Description: To get the currently installed locle in this platform
Arguments : Nil
Returns : set of locale as array
*/
@@ -50,9 +50,9 @@ echo "*** Testing setlocale() : basic functionality - set to a specific locale *
//set of locales to be used
$common_locales = array(
- "english_US"=> "en_US.utf8",
- "english_AU" => "en_AU.utf8",
- "korean_KR" => "ko_KR.utf8",
+ "english_US"=> "en_US.utf8",
+ "english_AU" => "en_AU.utf8",
+ "korean_KR" => "ko_KR.utf8",
"Chinese_zh" => "zh_CN.utf8",
"germen_DE" => "de_DE.utf8",
"spanish_es" => "es_EC.utf8",
@@ -79,18 +79,18 @@ $currency_symbol = array(
// gather all the locales installed in the system
$all_system_locales = list_system_locales();
-// set the system locale to a locale, choose the right locale by
-// finding a common locale in commonly used locale stored in
-// $common_locales & locales that are available in the system, stored
-// in $all_system_locales.
+// set the system locale to a locale, choose the right locale by
+// finding a common locale in commonly used locale stored in
+// $common_locales & locales that are available in the system, stored
+// in $all_system_locales.
echo "Setting system locale(LC_ALL) to ";
foreach($common_locales as $value) {
- // check if a commonly used locale is installed in the system
+ // check if a commonly used locale is installed in the system
if(in_array($value, $all_system_locales)){
echo "$value\n"; // print, this is found
// set the found locale as current locale
var_dump(setlocale(LC_ALL, $value ));
- // stop here
+ // stop here
break;
}
else{