We're living in 2004 now... perl is your friend for these kinds of things :)
[squirrelmail.git] / functions / decode / iso_8859_9.php
1 <?php
2 /**
3 * decode/iso8859-9.php
4 * $Id$
5 *
6 * Copyright (c) 2003-2004 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This file contains iso-8859-9 decoding function that is needed to read
10 * iso-8859-9 encoded mails in non-iso-8859-9 locale.
11 *
12 * Original data taken from:
13 * ftp://ftp.unicode.org/Public/MAPPINGS/ISO8859/8859-9.TXT
14 *
15 * Name: ISO/IEC 8859-9:1999 to Unicode
16 * Unicode version: 3.0
17 * Table version: 1.0
18 * Table format: Format A
19 * Date: 1999 July 27
20 * Authors: Ken Whistler <kenw@sybase.com>
21 *
22 * Original copyright:
23 * Copyright (c) 1999 Unicode, Inc. All Rights reserved.
24 *
25 * This file is provided as-is by Unicode, Inc. (The Unicode Consortium).
26 * No claims are made as to fitness for any particular purpose. No
27 * warranties of any kind are expressed or implied. The recipient
28 * agrees to determine applicability of information provided. If this
29 * file has been provided on optical media by Unicode, Inc., the sole
30 * remedy for any claim will be exchange of defective media within 90
31 * days of receipt.
32 *
33 * Unicode, Inc. hereby grants the right to freely use the information
34 * supplied in this file in the creation of products supporting the
35 * Unicode Standard, and to make copies of this file in any form for
36 * internal or external distribution as long as this notice remains
37 * attached.
38 * @package squirrelmail
39 * @subpackage decode
40 */
41
42 /**
43 * Decode iso8859-9 encoded strings
44 * @param string $string Encoded string
45 * @return string Decoded string
46 */
47 function charset_decode_iso_8859_9 ($string) {
48 global $default_charset;
49
50 if (strtolower($default_charset) == 'iso8859-9')
51 return $string;
52
53 /* Only do the slow convert if there are 8-bit characters */
54 /* there is no 0x80-0x9F letters in ISO8859-* */
55 if ( ! ereg("[\241-\377]", $string) )
56 return $string;
57
58 $iso8859_9 = array(
59 "\xA0" => '&#160;',
60 "\xA1" => '&#161;',
61 "\xA2" => '&#162;',
62 "\xA3" => '&#163;',
63 "\xA4" => '&#164;',
64 "\xA5" => '&#165;',
65 "\xA6" => '&#166;',
66 "\xA7" => '&#167;',
67 "\xA8" => '&#168;',
68 "\xA9" => '&#169;',
69 "\xAA" => '&#170;',
70 "\xAB" => '&#171;',
71 "\xAC" => '&#172;',
72 "\xAD" => '&#173;',
73 "\xAE" => '&#174;',
74 "\xAF" => '&#175;',
75 "\xB0" => '&#176;',
76 "\xB1" => '&#177;',
77 "\xB2" => '&#178;',
78 "\xB3" => '&#179;',
79 "\xB4" => '&#180;',
80 "\xB5" => '&#181;',
81 "\xB6" => '&#182;',
82 "\xB7" => '&#183;',
83 "\xB8" => '&#184;',
84 "\xB9" => '&#185;',
85 "\xBA" => '&#186;',
86 "\xBB" => '&#187;',
87 "\xBC" => '&#188;',
88 "\xBD" => '&#189;',
89 "\xBE" => '&#190;',
90 "\xBF" => '&#191;',
91 "\xC0" => '&#192;',
92 "\xC1" => '&#193;',
93 "\xC2" => '&#194;',
94 "\xC3" => '&#195;',
95 "\xC4" => '&#196;',
96 "\xC5" => '&#197;',
97 "\xC6" => '&#198;',
98 "\xC7" => '&#199;',
99 "\xC8" => '&#200;',
100 "\xC9" => '&#201;',
101 "\xCA" => '&#202;',
102 "\xCB" => '&#203;',
103 "\xCC" => '&#204;',
104 "\xCD" => '&#205;',
105 "\xCE" => '&#206;',
106 "\xCF" => '&#207;',
107 "\xD0" => '&#286;',
108 "\xD1" => '&#209;',
109 "\xD2" => '&#210;',
110 "\xD3" => '&#211;',
111 "\xD4" => '&#212;',
112 "\xD5" => '&#213;',
113 "\xD6" => '&#214;',
114 "\xD7" => '&#215;',
115 "\xD8" => '&#216;',
116 "\xD9" => '&#217;',
117 "\xDA" => '&#218;',
118 "\xDB" => '&#219;',
119 "\xDC" => '&#220;',
120 "\xDD" => '&#304;',
121 "\xDE" => '&#350;',
122 "\xDF" => '&#223;',
123 "\xE0" => '&#224;',
124 "\xE1" => '&#225;',
125 "\xE2" => '&#226;',
126 "\xE3" => '&#227;',
127 "\xE4" => '&#228;',
128 "\xE5" => '&#229;',
129 "\xE6" => '&#230;',
130 "\xE7" => '&#231;',
131 "\xE8" => '&#232;',
132 "\xE9" => '&#233;',
133 "\xEA" => '&#234;',
134 "\xEB" => '&#235;',
135 "\xEC" => '&#236;',
136 "\xED" => '&#237;',
137 "\xEE" => '&#238;',
138 "\xEF" => '&#239;',
139 "\xF0" => '&#287;',
140 "\xF1" => '&#241;',
141 "\xF2" => '&#242;',
142 "\xF3" => '&#243;',
143 "\xF4" => '&#244;',
144 "\xF5" => '&#245;',
145 "\xF6" => '&#246;',
146 "\xF7" => '&#247;',
147 "\xF8" => '&#248;',
148 "\xF9" => '&#249;',
149 "\xFA" => '&#250;',
150 "\xFB" => '&#251;',
151 "\xFC" => '&#252;',
152 "\xFD" => '&#305;',
153 "\xFE" => '&#351;',
154 "\xFF" => '&#255;'
155 );
156
157 $string = str_replace(array_keys($iso8859_9), array_values($iso8859_9), $string);
158
159 return $string;
160 }
161
162 ?>