I'm using the code below.
For variable %e I dont get an answer for the day.
For variable %d I get the answer!
Example 1:
setlocale(LC_TIME,'Swedish');
$playdate=strftime("%d %B (%Y)", $playdate);
gives: 01 maj (2004)
Example 2:
setlocale(LC_TIME,'Swedish');
$playdate=strftime("%e %B (%Y)", $playdate);
gives: maj (2004)
As you see the 2:nd example don't give an output. Anyone knows why? The dates are stored as unix time (BIGINT).