/usr/share/squirrelmail/functions/decode/cp1256.php is in squirrelmail 2:1.4.23~svn20120406-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | <?php
/**
* decode/cp1256.php
*
* This file contains cp1256 decoding function that is needed to read
* cp1256 encoded mails in non-cp1256 locale.
*
* Original data taken from:
* ftp://ftp.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1256.TXT
*
* Name: cp1256 to Unicode table
* Unicode version: 2.1
* Table version: 2.01
* Table format: Format A
* Date: 01/5/99
* Contact: cpxlate@microsoft.com
*
* @copyright 2003-2012 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: cp1256.php 14248 2012-01-02 00:18:17Z pdontthink $
* @package squirrelmail
* @subpackage decode
*/
/**
* decode cp1256-encoded string
* @param string $string Encoded string
* @return string $string Decoded string
*/
function charset_decode_cp1256 ($string) {
// don't do decoding when there are no 8bit symbols
if (! sq_is8bit($string,'windows-1256'))
return $string;
$cp1256 = array(
"\x80" => '€',
"\x81" => 'پ',
"\x82" => '‚',
"\x83" => 'ƒ',
"\x84" => '„',
"\x85" => '…',
"\x86" => '†',
"\x87" => '‡',
"\x88" => 'ˆ',
"\x89" => '‰',
"\x8A" => 'ٹ',
"\x8B" => '‹',
"\x8C" => 'Œ',
"\x8D" => 'چ',
"\x8E" => 'ژ',
"\x8F" => 'ڈ',
"\x90" => 'گ',
"\x91" => '‘',
"\x92" => '’',
"\x93" => '“',
"\x94" => '”',
"\x95" => '•',
"\x96" => '–',
"\x97" => '—',
"\x98" => 'ک',
"\x99" => '™',
"\x9A" => 'ڑ',
"\x9B" => '›',
"\x9C" => 'œ',
"\x9D" => '‌',
"\x9E" => '‍',
"\x9F" => 'ں',
"\xA0" => ' ',
"\xA1" => '،',
"\xA2" => '¢',
"\xA3" => '£',
"\xA4" => '¤',
"\xA5" => '¥',
"\xA6" => '¦',
"\xA7" => '§',
"\xA8" => '¨',
"\xA9" => '©',
"\xAA" => 'ھ',
"\xAB" => '«',
"\xAC" => '¬',
"\xAD" => '­',
"\xAE" => '®',
"\xAF" => '¯',
"\xB0" => '°',
"\xB1" => '±',
"\xB2" => '²',
"\xB3" => '³',
"\xB4" => '´',
"\xB5" => 'µ',
"\xB6" => '¶',
"\xB7" => '·',
"\xB8" => '¸',
"\xB9" => '¹',
"\xBA" => '؛',
"\xBB" => '»',
"\xBC" => '¼',
"\xBD" => '½',
"\xBE" => '¾',
"\xBF" => '؟',
"\xC0" => 'ہ',
"\xC1" => 'ء',
"\xC2" => 'آ',
"\xC3" => 'أ',
"\xC4" => 'ؤ',
"\xC5" => 'إ',
"\xC6" => 'ئ',
"\xC7" => 'ا',
"\xC8" => 'ب',
"\xC9" => 'ة',
"\xCA" => 'ت',
"\xCB" => 'ث',
"\xCC" => 'ج',
"\xCD" => 'ح',
"\xCE" => 'خ',
"\xCF" => 'د',
"\xD0" => 'ذ',
"\xD1" => 'ر',
"\xD2" => 'ز',
"\xD3" => 'س',
"\xD4" => 'ش',
"\xD5" => 'ص',
"\xD6" => 'ض',
"\xD7" => '×',
"\xD8" => 'ط',
"\xD9" => 'ظ',
"\xDA" => 'ع',
"\xDB" => 'غ',
"\xDC" => 'ـ',
"\xDD" => 'ف',
"\xDE" => 'ق',
"\xDF" => 'ك',
"\xE0" => 'à',
"\xE1" => 'ل',
"\xE2" => 'â',
"\xE3" => 'م',
"\xE4" => 'ن',
"\xE5" => 'ه',
"\xE6" => 'و',
"\xE7" => 'ç',
"\xE8" => 'è',
"\xE9" => 'é',
"\xEA" => 'ê',
"\xEB" => 'ë',
"\xEC" => 'ى',
"\xED" => 'ي',
"\xEE" => 'î',
"\xEF" => 'ï',
"\xF0" => 'ً',
"\xF1" => 'ٌ',
"\xF2" => 'ٍ',
"\xF3" => 'َ',
"\xF4" => 'ô',
"\xF5" => 'ُ',
"\xF6" => 'ِ',
"\xF7" => '÷',
"\xF8" => 'ّ',
"\xF9" => 'ù',
"\xFA" => 'ْ',
"\xFB" => 'û',
"\xFC" => 'ü',
"\xFD" => '‎',
"\xFE" => '‏',
"\xFF" => 'ے'
);
$string = str_replace(array_keys($cp1256), array_values($cp1256), $string);
return $string;
}
|