jordanpope
Programmer
I am trying to return a date in the following format:
25 Setembro, 2003, 18:00
I have been trying to use setlocale as follows:
setlocale(LC_TIME, "pt_BR"
And return my date as follows:
$currDate = strftime("%e %B, %Y, %H:%M"
However, all this returns is 25 September, 2003, 18:52 ... where I am attempting to return 25 Setembro, 2003, 18:52 ...
Can someone please help?
25 Setembro, 2003, 18:00
I have been trying to use setlocale as follows:
setlocale(LC_TIME, "pt_BR"
And return my date as follows:
$currDate = strftime("%e %B, %Y, %H:%M"
However, all this returns is 25 September, 2003, 18:52 ... where I am attempting to return 25 Setembro, 2003, 18:52 ...
Can someone please help?