![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/lib/internal/Customweb/Core/Charset/ |
<?php /** * You are allowed to use this API in your web application. * * Copyright (C) 2018 by customweb GmbH * * This program is licenced under the customweb software licence. With the * purchase or the installation of the software in your application you * accept the licence agreement. The allowed usage is outlined in the * customweb software licence which can be found under * http://www.sellxed.com/en/software-license-agreement * * Any modification or distribution is strictly forbidden. The license * grants you the installation in one application. For multiuse you will need * to purchase further licences at http://www.sellxed.com/shop. * * See the customweb software licence agreement for more details. * */ class Customweb_Core_Charset_ISO885910 extends Customweb_Core_Charset_TableBasedCharset{ private static $conversionTable = array( "\xA0" => "\xc2\xa0", "\xA1" => "\xc4\x84", "\xA2" => "\xc4\x92", "\xA3" => "\xc4\xa2", "\xA4" => "\xc4\xaa", "\xA5" => "\xc4\xa8", "\xA6" => "\xc4\xb6", "\xA7" => "\xc2\xa7", "\xA8" => "\xc4\xbb", "\xA9" => "\xc4\x90", "\xAA" => "\xc5\xa0", "\xAB" => "\xc5\xa6", "\xAC" => "\xc5\xbd", "\xAD" => "\xc2\xad", "\xAE" => "\xc5\xaa", "\xAF" => "\xc5\x8a", "\xB0" => "\xc2\xb0", "\xB1" => "\xc4\x85", "\xB2" => "\xc4\x93", "\xB3" => "\xc4\xa3", "\xB4" => "\xc4\xab", "\xB5" => "\xc4\xa9", "\xB6" => "\xc4\xb7", "\xB7" => "\xc2\xb7", "\xB8" => "\xc4\xbc", "\xB9" => "\xc4\x91", "\xBA" => "\xc5\xa1", "\xBB" => "\xc5\xa7", "\xBC" => "\xc5\xbe", "\xBD" => "\xe2\x80\x95", "\xBE" => "\xc5\xab", "\xBF" => "\xc5\x8b", "\xC0" => "\xc4\x80", "\xC1" => "\xc3\x81", "\xC2" => "\xc3\x82", "\xC3" => "\xc3\x83", "\xC4" => "\xc3\x84", "\xC5" => "\xc3\x85", "\xC6" => "\xc3\x86", "\xC7" => "\xc4\xae", "\xC8" => "\xc4\x8c", "\xC9" => "\xc3\x89", "\xCA" => "\xc4\x98", "\xCB" => "\xc3\x8b", "\xCC" => "\xc4\x96", "\xCD" => "\xc3\x8d", "\xCE" => "\xc3\x8e", "\xCF" => "\xc3\x8f", "\xD0" => "\xc3\x90", "\xD1" => "\xc5\x85", "\xD2" => "\xc5\x8c", "\xD3" => "\xc3\x93", "\xD4" => "\xc3\x94", "\xD5" => "\xc3\x95", "\xD6" => "\xc3\x96", "\xD7" => "\xc5\xa8", "\xD8" => "\xc3\x98", "\xD9" => "\xc5\xb2", "\xDA" => "\xc3\x9a", "\xDB" => "\xc3\x9b", "\xDC" => "\xc3\x9c", "\xDD" => "\xc3\x9d", "\xDE" => "\xc3\x9e", "\xDF" => "\xc3\x9f", "\xE0" => "\xc4\x81", "\xE1" => "\xc3\xa1", "\xE2" => "\xc3\xa2", "\xE3" => "\xc3\xa3", "\xE4" => "\xc3\xa4", "\xE5" => "\xc3\xa5", "\xE6" => "\xc3\xa6", "\xE7" => "\xc4\xaf", "\xE8" => "\xc4\x8d", "\xE9" => "\xc3\xa9", "\xEA" => "\xc4\x99", "\xEB" => "\xc3\xab", "\xEC" => "\xc4\x97", "\xED" => "\xc3\xad", "\xEE" => "\xc3\xae", "\xEF" => "\xc3\xaf", "\xF0" => "\xc3\xb0", "\xF1" => "\xc5\x86", "\xF2" => "\xc5\x8d", "\xF3" => "\xc3\xb3", "\xF4" => "\xc3\xb4", "\xF5" => "\xc3\xb5", "\xF6" => "\xc3\xb6", "\xF7" => "\xc5\xa9", "\xF8" => "\xc3\xb8", "\xF9" => "\xc5\xb3", "\xFA" => "\xc3\xba", "\xFB" => "\xc3\xbb", "\xFC" => "\xc3\xbc", "\xFD" => "\xc3\xbd", "\xFE" => "\xc3\xbe", "\xFF" => "\xc4\xb8", ); private static $aliases = array( 'ISO-8859-10:1998', ); protected function getConversionTable() { return self::$conversionTable; } protected function getNoChangesRanges() { return array( array( 'start' => 0x20, 'end' => 0x7E, ), ); } public function getName() { return 'ISO-8859-10'; } public function getAliases() { return self::$aliases; } }