Hello,
Is there an easy way to know the day of the week of the current date or some specified date.
Thanks
Get day of the week
Re: Get day of the week
Hi. You can try the code below :
timestring("%u", timestamp()); //ISO 8601 weekday as number with Monday as 1 (1-7)
timestring("%u", timestamp()); //ISO 8601 weekday as number with Monday as 1 (1-7)
Oumar DIOP from Sénégal.
-
- Posts: 1883
- Joined: December 5th, 2011, 11:27 pm
- Location: Washington, DC
Re: Get day of the week
You can also look at: viewtopic.php?t=3183
-
- Posts: 146
- Joined: February 11th, 2013, 8:26 am
Re: Get day of the week
Thank you for your responses, the opation from Gregory is the most clear.