Hi,
I've got a problem with the strftime function...
this is my code :
setlocale(LC_AL L, 'en') ;
echo strftime("'%B'" , strtotime('2006-09-03 00:00:00')) . "<br />" ;
echo strftime("'%e'" , strtotime('2006-09-03 00:00:00')) ;
as I expected :
'September'
'3'
I got :
'September'
''
Do you know why ?
Thanks in advance,
--
phil
I've got a problem with the strftime function...
this is my code :
setlocale(LC_AL L, 'en') ;
echo strftime("'%B'" , strtotime('2006-09-03 00:00:00')) . "<br />" ;
echo strftime("'%e'" , strtotime('2006-09-03 00:00:00')) ;
as I expected :
'September'
'3'
I got :
'September'
''
Do you know why ?
Thanks in advance,
--
phil
Comment