How can i convert 2010-03-01 to unixtime like 1267452738

link|improve this question

You've got lots to chose from: unix time is accurate to the second :-) – Douglas Leeder Jan 20 '10 at 14:20
feedback

3 Answers

up vote 5 down vote accepted
echo strtotime('2010-03-01');
link|improve this answer
thanks have a nice day – streetparade Jan 20 '10 at 14:31
feedback

From http://php.net/manual/en/function.strtotime.php:

strtotime (PHP 4, PHP 5) — Parse about any English textual datetime description into a Unix timestamp

int strtotime ( string $time [, int $now ] )

The function expects to be given a string containing a US English date format and will try to parse that format into a Unix timestamp (the number of seconds since January 1 1970 00:00:00 UTC), relative to the timestamp given in now , or the current time if now is not supplied.

This function will use the TZ environment variable (if available) to calculate the timestamp. Since PHP 5.1.0 there are easier ways to define the timezone that is used across all date/time functions. That process is explained in the date_default_timezone_get() function page.

link|improve this answer
feedback

http://www.onlineconversion.com/unix_time.htm is also a good resource to convert unix time to date and vice versa.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.