Tagged Questions
2
votes
5answers
871 views
Getting the day from a Unix timestamp (PHP)
How do I get the day (1-7) from a Unix timestamp in PHP? I also need the day date (1-31) and month (1-12).
1
vote
4answers
1k views
Get string representation of a sql DateTime day
Let's say i have a sql datetime of '1 May 2009' or '12 May 2009'.
Is there any built in sql function / operation i can perform on the dates above to return the string representation of the DAY of the ...
0
votes
3answers
159 views
How can I get the timestamp for a given day of week?
Basically, I have this requirement to convert a present/future weekday to a timestamp.
Example:
today = Thu, 24 Feb 2010
weekday = Tue
next date = Tue, 1 Mar 2010
cur stamp = 1267016400
new ...