Changeset 22 for code.php


Ignore:
Timestamp:
Oct 22, 2008, 11:44:32 AM (16 years ago)
Author:
george
Message:
  • Upraveno: Optimalizace načítání obslužných tříd typů "na požádání".
  • Upraveno: Načítání znakových převodních tabulek "na požádání".
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code.php

    r8 r22  
    3030  character in ISO8859-2/Windows1250 and value is its two byte representation in UTF-8
    3131*/
     32
     33function DefineCharTable()
     34{
     35  global $CharTable;
    3236
    3337$CharTable = array(
     
    520524  ),
    521525);
    522 
     526}
    523527
    524528function ToUTF8($String, $Charset = 'iso2')
     
    526530  global $CharTable;
    527531
     532  if(!isset($CharTable)) DefineCharTable();
    528533  $Result = '';
    529534  for($I = 0; $I < strlen($String); $I++)
     
    542547  global $CharTable;
    543548
     549  if(!isset($CharTable)) DefineCharTable();
    544550  $Result = '';
    545551  $UTFPrefix = '';
Note: See TracChangeset for help on using the changeset viewer.