Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17660 программистов и 1372 робота. Сейчас ищут 1543 программиста ...
Class Summary Translation2_Decorator_Iconv
Вернуться к: Translation2
Class Summary Translation2_Decorator_Iconv
Class Summary Translation2_Decorator_Iconv – Decorator to switch from/to different encodings.
Use setOption() with the encoding parameter to specify the target encoding of the current decorator.
<?php
$tr = new Translation2($driver, $dbinfo, $params);
//set Hungarian as the main language
$tr->setLang('hu');
//encode all the strings using the ISO-8859-2 charset
$tr =& $tr->getDecorator('Iconv');
$tr->setOption('encoding', 'ISO-8859-2');
?>
Вернуться к: Translation2