nlopess Tue Sep 21 13:51:50 2004 EDT
Modified files:
/phpdoc/en/reference/mbstring/functions mb-list-encodings.xml
Log:
doc and example
http://cvs.php.net/diff.php/phpdoc/en/reference/mbstring/functions/mb-list-encodings.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/reference/mbstring/functions/mb-list-encodings.xml
diff -u phpdoc/en/reference/mbstring/functions/mb-list-encodings.xml:1.1
phpdoc/en/reference/mbstring/functions/mb-list-encodings.xml:1.2
--- phpdoc/en/reference/mbstring/functions/mb-list-encodings.xml:1.1 Mon May 17
11:35:22 2004
+++ phpdoc/en/reference/mbstring/functions/mb-list-encodings.xml Tue Sep 21
13:51:49 2004
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<refentry id="function.mb-list-encodings">
<refnamediv>
<refname>mb_list_encodings</refname>
@@ -13,9 +13,94 @@
<type>array</type><methodname>mb_list_encodings</methodname>
<void/>
</methodsynopsis>
+ <para>
+ <function>mb_list_encodings</function> returns an array with all
+ supported encodings.
+ </para>
+ <para>
+ <example>
+ <title><function>mb_list_encodings</function> example</title>
+ <programlisting role="php">
+<![CDATA[
+<?php
- &warn.undocumented.func;
+print_r(mb_list_encodings());
+?>
+]]>
+ </programlisting>
+ <para>
+ The above example will output:
+ </para>
+ <screen>
+<![CDATA[
+Array
+(
+ [0] => pass
+ [1] => auto
+ [2] => wchar
+ [3] => byte2be
+ [4] => byte2le
+ [5] => byte4be
+ [6] => byte4le
+ [7] => BASE64
+ [8] => UUENCODE
+ [9] => HTML-ENTITIES
+ [10] => Quoted-Printable
+ [11] => 7bit
+ [12] => 8bit
+ [13] => UCS-4
+ [14] => UCS-4BE
+ [15] => UCS-4LE
+ [16] => UCS-2
+ [17] => UCS-2BE
+ [18] => UCS-2LE
+ [19] => UTF-32
+ [20] => UTF-32BE
+ [21] => UTF-32LE
+ [22] => UTF-16
+ [23] => UTF-16BE
+ [24] => UTF-16LE
+ [25] => UTF-8
+ [26] => UTF-7
+ [27] => UTF7-IMAP
+ [28] => ASCII
+ [29] => EUC-JP
+ [30] => SJIS
+ [31] => eucJP-win
+ [32] => SJIS-win
+ [33] => JIS
+ [34] => ISO-2022-JP
+ [35] => Windows-1252
+ [36] => ISO-8859-1
+ [37] => ISO-8859-2
+ [38] => ISO-8859-3
+ [39] => ISO-8859-4
+ [40] => ISO-8859-5
+ [41] => ISO-8859-6
+ [42] => ISO-8859-7
+ [43] => ISO-8859-8
+ [44] => ISO-8859-9
+ [45] => ISO-8859-10
+ [46] => ISO-8859-13
+ [47] => ISO-8859-14
+ [48] => ISO-8859-15
+ [49] => EUC-CN
+ [50] => CP936
+ [51] => HZ
+ [52] => EUC-TW
+ [53] => BIG-5
+ [54] => EUC-KR
+ [55] => UHC
+ [56] => ISO-2022-KR
+ [57] => Windows-1251
+ [58] => CP866
+ [59] => KOI8-R
+)
+]]>
+ </screen>
+ </example>
+ </para>
</refsect1>
</refentry>