derick Mon Sep 13 03:22:32 2004 EDT
Modified files: /phpdoc/en/reference/strings/functions localeconv.xml Log: - Fixed example http://cvs.php.net/diff.php/phpdoc/en/reference/strings/functions/localeconv.xml?r1=1.6&r2=1.7&ty=u Index: phpdoc/en/reference/strings/functions/localeconv.xml diff -u phpdoc/en/reference/strings/functions/localeconv.xml:1.6 phpdoc/en/reference/strings/functions/localeconv.xml:1.7 --- phpdoc/en/reference/strings/functions/localeconv.xml:1.6 Sun Sep 12 22:12:24 2004 +++ phpdoc/en/reference/strings/functions/localeconv.xml Mon Sep 13 03:22:29 2004 @@ -1,5 +1,5 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.6 $ --> +<?xml version="1.0" encoding="utf-8"?> +<!-- $Revision: 1.7 $ --> <!-- splitted from ./en/functions/strings.xml, last change in rev 1.68 --> <refentry id="function.localeconv"> <refnamediv> @@ -151,7 +151,7 @@ <programlisting role="php"> <![CDATA[ <?php -setlocale(LC_ALL, 'en_US'); +setlocale(LC_ALL, '[EMAIL PROTECTED]'); $locale_info = localeconv(); print_r($locale_info); @@ -164,27 +164,29 @@ Array ( [decimal_point] => . - [thousands_sep] => - [int_curr_symbol] => - [currency_symbol] => - [mon_decimal_point] => - [mon_thousands_sep] => - [positive_sign] => - [negative_sign] => - [int_frac_digits] => 127 - [frac_digits] => 127 - [p_cs_precedes] => 127 - [p_sep_by_space] => 127 - [n_cs_precedes] => 127 - [n_sep_by_space] => 127 - [p_sign_posn] => 127 - [n_sign_posn] => 127 + [thousands_sep] => + [int_curr_symbol] => EUR + [currency_symbol] => € + [mon_decimal_point] => , + [mon_thousands_sep] => + [positive_sign] => + [negative_sign] => - + [int_frac_digits] => 2 + [frac_digits] => 2 + [p_cs_precedes] => 1 + [p_sep_by_space] => 1 + [n_cs_precedes] => 1 + [n_sep_by_space] => 1 + [p_sign_posn] => 1 + [n_sign_posn] => 2 [grouping] => Array ( ) [mon_grouping] => Array ( + [0] => 3 + [1] => 3 ) )