From: [EMAIL PROTECTED]
Operating system: RedHat 7.1
PHP version: 4.0.6
PHP Bug Type: Date/time related
Bug description: Icelandic locale grammar error
I am doing this:
setlocale('LC_TIME', 'is_IS');
$tmp_sDate = explode('-', $datestamp);
$sDate = strftime('%d. %B %Y', mktime(10, 0, 0, $tmp_sDate[1],
$tmp_sDate[2], $tmp_sDate[0]));
Then I echo $sDate as the Icelandic date format I want. But here's the
problem. There's a grammar error in this, the output from $sDate is like
this:
22. N�vember 2001
But it should be like this:
22. n�vember 2001 (small letter in the beginning of the name of the
month).
--
Edit bug report at: http://bugs.php.net/?id=14180&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]