There is my test :
setlocale('LC_TIME', 'fr_FR');
print "gmstrftime("%A, %d %B %Y, %H:%M", gmmktime());
I run the program from Paris, sunday, at 21:00
Result :
dimanche, 29 septembre 2002, 15:00
where dimanche means Sunday (in French)
But this result seams to be wrong. If the REAL time is 21:00 in Paris (GMT+1), it means GMT+0 is equal to 20:00, right ?
So why do I get 15:00 instead of 20:00 ?
I know 15:00 was the time in Eastern Canada at this moment.
Thanks for help !