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).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use date() function
|
|||||||
|
|
see http://docs.php.net/getdate e.g.
|
|||
|
|
|
It's the date() function you're after. You can get more details from the PHP manual but in a nutshell here are the functions you need.
|
|||
|
|
|
|||
|
|
|
Use the date function as stated before, with your
Not all PHP versions play nice with negative timestamps. My experience is that timestamps dating back to before the UNIX epoch fare better with the new DateTime object. |
|||
|
|

