Legend:
- Unmodified
- Added
- Removed
-
code.php
r8 r22 30 30 character in ISO8859-2/Windows1250 and value is its two byte representation in UTF-8 31 31 */ 32 33 function DefineCharTable() 34 { 35 global $CharTable; 32 36 33 37 $CharTable = array( … … 520 524 ), 521 525 ); 522 526 } 523 527 524 528 function ToUTF8($String, $Charset = 'iso2') … … 526 530 global $CharTable; 527 531 532 if(!isset($CharTable)) DefineCharTable(); 528 533 $Result = ''; 529 534 for($I = 0; $I < strlen($String); $I++) … … 542 547 global $CharTable; 543 548 549 if(!isset($CharTable)) DefineCharTable(); 544 550 $Result = ''; 545 551 $UTFPrefix = '';
Note:
See TracChangeset
for help on using the changeset viewer.