- Posts: 2
- Thank you received: 0
function textswitch ($text)
{
$str_search = array(
"й","ц","у","к","е","н","г","ш","щ","з","х","ъ",
"ф","ы","в","а","п","р","о","л","д","ж","э",
"я","ч","с","м","и","т","ь","б","ю"
);
$str_replace = array(
"q","w","e","r","t","y","u","i","o","p","[","]",
"a","s","d","f","g","h","j","k","l",";","'",
"z","x","c","v","b","n","m",",","."
);
return str_replace($str_replace, $str_search, $text);
}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Contact:
email: This email address is being protected from spambots. You need JavaScript enabled to view it.