BE CAREFUL WITH UPGRADE!!! - CONSTRUCTOR HAS CHANGED!!!
Because of different constructor initialisation, we get great speed increse. In version 1.1 you decide about parameters before convertion. This can take more memory, but is much faster then constructing convert arrays every time you call Convert() method.
Right now you should create as many objects as many conversions you need. Then convert every string with proper object.<?php ... require_once(ConvertCharset.class.php); ... $iso2win = new ConvertCharset ('iso-8859-2','windows-1250'); $win2iso = new ConvertCharset ('windows-1250','iso-8859-2'); $iso2dos = new ConvertCharset ('iso-8859-2','cp852'); ... $string_iso = 'something in iso-8859-2'; $string_win = 'something in windows-1250'; ... $new_win = $iso2win->Convert($string_iso); $new_iso = $win2iso->Convert($string_win); $new_dos = $iso2dos->Convert($string_iso); ... ?>
I want to thank all people who helped me fix all bugs, small and big once. I hope that you don't mind that your names are in this file.
Copyright | Copyright Mikolaj Jedrzejak (c) 2003-2007 |
---|
ChangeLog has no classes.
ChangeLog has no functions.