Ok, here goes the minimod that performs the conversion of Russian letters into appropriate English letters / letter combinations.
IN dt.php, FIND:
PHP Code:
$filename = str_replace(' ', '_', $filename);
ADD UNDERNEATH:
PHP Code:
// -----------------------------------------------------------------------------------------------------------------------------------------------
// Download Thread :: Russian Symbols Conversion Mod by Psionic Vision
// -----------------------------------------------------------------------------------------------------------------------------------------------
$preg_find = array
(
"/А/", "/Б/", "/В/", "/Г/", "/Д/", "/Е/", "/Ё/", "/Ж/", "/З/", "/И/", "/Й/", "/К/", "/Л/", "/М/", "/Н/", "/О/", "/П/", "/Р/", "/С/", "/Т/", "/У/", "/Ф/", "/Х/", "/Ц/", "/Ч/", "/Ш/", "/Щ/", "/Ъ/", "/Ы/", "/Ь/", "/Э/", "/Ю/", "/Я/",
"/а/", "/б/", "/в/", "/г/", "/д/", "/е/", "/ё/", "/ж/", "/з/", "/и/", "/й/", "/к/", "/л/", "/м/", "/н/", "/о/", "/п/", "/р/", "/с/", "/т/", "/у/", "/ф/", "/х/", "/ц/", "/ч/", "/ш/", "/щ/", "/ъ/", "/ы/", "/ь/", "/э/", "/ю/", "/я/"
);
$preg_replace = array
(
"A", "B", "V", "G", "D", "E", "Jo", "Zh", "Z", "I", "J", "K", "L", "M", "N", "O", "P", "R", "S", "T", "U", "F", "H", "C", "Ch", "Sh", "Sh'", "'", "Y", "'", "Je", "Ju", "Ja",
"a", "b", "v", "g", "d", "e", "jo", "zh", "z", "i", "j", "k", "l", "m", "n", "o", "p", "r", "s", "t", "u", "f", "h", "c", "ch", "sh", "sh'", "'", "y", "'", "je", "ju", "ja"
);
$filename = preg_replace($preg_find, $preg_replace, $filename);
// -----------------------------------------------------------------------------------------------------------------------------------------------
// Download Thread :: Russian Symbols Conversion Mod by Psionic Vision
// -----------------------------------------------------------------------------------------------------------------------------------------------
Enjoy everyone
P.S. A few other things:
1) Is there any reason behind using application/octet-stream rather than text/plan?
2) Why not make a custom function printbr($text, $num_of_breaks = 1), that will remove the need of writing "\r\n" all the time?
|