Why does...
// assume October...
setlocale(LC_TIME, "de_GR");
echo strftime("%d. %B %Y");
gives me 'October'?
and this...
// assume October...
setlocale(LC_TIME, "de");
echo strftime("%d. %B %Y");
gives me 'October'?
and this...
// assume October...
setlocale(LC_TIME, "d");
echo strftime("%d. %B %Y");
gives me 'oktober'?
I'm on a Win 2k box.
Walter
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

