Конвертор кирилличного текста в Unicode на PHP
//перекодировка win->unicode
<?php
function cyr_code ($in_text){
$output="";
$other[1025]="Ё";
$other[1105]="ё";
$other[1028]="Є";
$other[1108]="є";
$other[1030]="i";
$other[1110]="i";
$other[1031]="Ї";
$other[1111]="ї";
for ($i=0; $i if (ord($in_text{$i})>191){
$output.="&#".(ord($in_text{$i})+848).";";
} else {
if (array_search($in_text{$i}, $other)===false){
$output.=$in_text{$i};
} else {
$output.="&#".array_search($in_text{$i}, $other).";";
}
}
}
return $output;
}
?>
Дата добавления: 2009-11-24 11:02:03, просмотров: 7678
Пожалуйста, авторизируйтесь, для возможности добавить комментарий..