mysql_set_charset('utf8',$db_connect);
ini_set('default_charset','utf-8');
ini_set('mbstring.language', 'Neutral');
ini_set('mbstring.internal_encoding', 'UTF-8');
ini_set('mbstring.http_input', 'UTF-8');
ini_set('mbstring.http_output', 'UTF-8');
ini_set('mbstring.encoding_translation', 'On');
ini_set('mbstring.detect_order', 'auto');
ini_set('mbstring.substitute_character', 'long');
ini_set('mbstring.func_overload',7);
mb_internal_encoding("UTF-8");
mb_http_output( "UTF-8" );
ob_start("mb_output_handler");
if (strlen($text) > $length) $text = substr($text, 0, ($length-3))."...";
if (strlen($text) > $length) $text = mb_substr($text,0,($length-3),mb_detect_encoding($text))."...";
Quote
smokeman wrote:Quote
Ali Dbg wrote:
Good Luck
Thank you - but I prefer to not make any changes in the core file(s). ;)
Quote
Ali Dbg wrote:
Good Luck
Category Forum
Modifications and Requests - 8Labels
None yet
Statistics
2 participants
Notifications
You are not receiving notifications from this thread.
Related Questions