Quote:
Originally Posted by www.1n1n.com
help me
I want to change the symbol of the language to
Windows-1256
Example of the problem :
ط?ظAeط?ط? ط?ظAeظٹظˆظ… طھطaeظƒط? ظ…ط?ط?ظˆظپ ط?ظAeط?ظپط?ط? - ط?ظAeط?ط?ط?ط? . ظ†طھ
|
IF you have
iconv available as part of your php install, I think this will do the trick. However, I don't have iconv so I can't test it right now for you.
in the file includes/class_abouttoday.php, on line 410, find this function:
PHP Code:
function cv_input($str)
{
$out = "";
for ($i = 0; $i<strlen($str);$i++){
$ch= ord($str{$i});
switch($ch){
case 195: $out .= "";break;
case 164: $out .= "ae"; break;
case 188: $out .= "ue"; break;
case 182: $out .= "oe"; break;
case 132: $out .= "Ae"; break;
case 156: $out .= "Ue"; break;
case 150: $out .= "Oe"; break;
case 225: $out .= "?";break;
default : $out .= chr($ch) ;
}
}
return $out;
}
replace with:
PHP Code:
function cv_input($str)
{
$out = "";
for ($i = 0; $i<strlen($str);$i++){
$ch= ord($str{$i});
switch($ch){
case 195: $out .= "";break;
case 164: $out .= "ae"; break;
case 188: $out .= "ue"; break;
case 182: $out .= "oe"; break;
case 132: $out .= "Ae"; break;
case 156: $out .= "Ue"; break;
case 150: $out .= "Oe"; break;
case 225: $out .= "?";break;
default : $out .= chr($ch) ;
}
}
$out = iconv("UTF-8","windows-1256", $out); // test to convert to windows-1256
return $out;
}
I am curious if that works!