reference/strings/charsets.xml
e5f1a5a296ba7c900dfd387a8cc51a73f6de9121
...
...
@@ -1,7 +1,7 @@
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<!-- $Revision$ -->
3
3
<para xmlns="http://docbook.org/ns/docbook">
4
-
Following character sets are supported in PHP 4.3.0 and later.
4
+
The following character sets are supported:
5
5
<table>
6
6
<title>Supported charsets</title>
7
7
<tgroup cols="3">
...
...
@@ -17,7 +17,14 @@
17
17
<entry>ISO-8859-1</entry>
18
18
<entry>ISO8859-1</entry>
19
19
<entry>
20
-
Western European, Latin-1
20
+
Western European, Latin-1.
21
+
</entry>
22
+
</row>
23
+
<row>
24
+
<entry>ISO-8859-5</entry>
25
+
<entry>ISO8859-5</entry>
26
+
<entry>
27
+
Little used cyrillic charset (Latin/Cyrillic).
21
28
</entry>
22
29
</row>
23
30
<row>
...
...
@@ -25,7 +32,7 @@
25
32
<entry>ISO8859-15</entry>
26
33
<entry>
27
34
Western European, Latin-9. Adds the Euro sign, French and Finnish
28
-
letters missing in Latin-1(ISO-8859-1).
35
+
letters missing in Latin-1 (ISO-8859-1).
29
36
</entry>
30
37
</row>
31
38
<row>
...
...
@@ -40,7 +47,6 @@
40
47
<entry>ibm866, 866</entry>
41
48
<entry>
42
49
DOS-specific Cyrillic charset.
43
-
This charset is supported in 4.3.2.
44
50
</entry>
45
51
</row>
46
52
<row>
...
...
@@ -48,7 +54,6 @@
48
54
<entry>Windows-1251, win-1251, 1251</entry>
49
55
<entry>
50
56
Windows-specific Cyrillic charset.
51
-
This charset is supported in 4.3.2.
52
57
</entry>
53
58
</row>
54
59
<row>
...
...
@@ -62,7 +67,7 @@
62
67
<entry>KOI8-R</entry>
63
68
<entry>koi8-ru, koi8r</entry>
64
69
<entry>
65
-
Russian. This charset is supported in 4.3.2.
70
+
Russian.
66
71
</entry>
67
72
</row>
68
73
<row>
...
...
@@ -88,25 +93,42 @@
88
93
</row>
89
94
<row>
90
95
<entry>Shift_JIS</entry>
91
-
<entry>SJIS, 932</entry>
96
+
<entry>SJIS, SJIS-win, cp932, 932</entry>
92
97
<entry>
93
98
Japanese
94
99
</entry>
95
100
</row>
96
101
<row>
97
102
<entry>EUC-JP</entry>
98
-
<entry>EUCJP</entry>
103
+
<entry>EUCJP, eucJP-win</entry>
99
104
<entry>
100
105
Japanese
101
106
</entry>
102
107
</row>
108
+
<row>
109
+
<entry>MacRoman</entry>
110
+
<entry></entry>
111
+
<entry>
112
+
Charset that was used by Mac OS.
113
+
</entry>
114
+
</row>
115
+
<row>
116
+
<entry><literal>''</literal></entry>
117
+
<entry></entry>
118
+
<entry>
119
+
An empty string activates detection from script encoding (Zend multibyte),
120
+
<link linkend="ini.default-charset">default_charset</link> and current
121
+
locale (see <function>nl_langinfo</function> and
122
+
<function>setlocale</function>), in this order. Not recommended.
123
+
</entry>
124
+
</row>
103
125
</tbody>
104
126
</tgroup>
105
127
</table>
106
128
<note>
107
129
<simpara>
108
-
Any other character sets are not recognized and ISO-8859-1 will be used
109
-
instead.
130
+
Any other character sets are not recognized. The default encoding will be
131
+
used instead and a warning will be emitted.
110
132
</simpara>
111
133
</note>
112
134
</para>
113
135