function lt_chars($tekstas) {
$char = array(
"ą" => "a",
"Ą" => "A",
"č" => "c",
"Č" => "C",
"ę" => "e",
"Ę" => "E",
"ė" => "e",
"Ė" => "E",
"į" => "i",
"Į" => "Į",
"š" => "s",
"Š" => "S",
"ų" => "u",
"Ų" => "U",
"ū" => "u",
"Ū" => "U",
"ž" => "z",
"Ž" => "Z");
foreach ($char as $lt => $nlt) { $tekstas = str_replace($lt, $nlt, $tekstas); } return $tekstas; }