6 * This file contains cp1256 decoding function that is needed to read
7 * cp1256 encoded mails in non-cp1256 locale.
9 * Original data taken from:
10 * ftp://ftp.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1256.TXT
12 * Name: cp1256 to Unicode table
13 * Unicode version: 2.1
15 * Table format: Format A
17 * Contact: cpxlate@microsoft.com
19 * @copyright © 2003-2006 The SquirrelMail Project Team
20 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
22 * @package squirrelmail
27 * decode cp1256-encoded string
28 * @param string $string Encoded string
29 * @return string $string Decoded string
31 function charset_decode_cp1256 ($string) {
32 // don't do decoding when there are no 8bit symbols
33 if (! sq_is8bit($string,'windows-1256'))
167 $string = str_replace(array_keys($cp1256), array_values($cp1256), $string);