I am looking to convert a mysql timestamp to a epoch time in seconds using php, and vice versa. What's the cleanest way to do this?
|
|
See strtotime and date functions in PHP manual.
|
||
|
|
|
|
There are two functions in MySQL which are useful for converting back and forth from the unix epoch time that PHP likes: For example, to get it back in PHP unix time, you could do: SELECT unix_timestamp(timestamp_col) FROM tbl WHERE ... |
||
|
|
|
|
From MySQL timestamp to epoch seconds:
From epoch seconds to MySQL timestamp:
|
||
|
|
