Hi,
this is working but I would like better solution:
function Decode_String($text)
{
$from = Array("Á", "á", "Č", "č", "Ď", "ď",
"É", "é", "Ě", "ě", "Í", "í", "Ň",
"ň", "Ó", "ó", "Ř", "ř","Š", "š",
"Ť", "ť", "Ú", "ú", "Ů", "ů", "Ý",
"ý", "Ž", "ž");
$to = Array("Á", "á", "Č", "č", "Ď", "ď", "É", "é", "Ě", "ě", "Í", "í", "Ň",
"ň", "Ó", "ó", "Ř", "ř", "Š", "š", "Ť", "ť", "Ú", "ú", "Ů", "ů", "Ý", "ý", "Ž",
"ž");
return str_replace($from, $to, $text);
}
I have php 4.4.8 and this is emergency soulution because I have
presentation today. After it I can investigate where problem is.
Thank you
Radek
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php