vote up 3 vote down star
1

How do I get timestamp from,for example : 22-09-2008

flag

0% accept rate

9 Answers

vote up 16 vote down

php's strtotime()

gives

$timestamp = strtotime('22-09-2008');
link|flag
Elegant. I had forgotten about that! – Till Sep 22 '08 at 8:49
vote up 5 vote down

There is also strptime which expects exactly one format:

$a = strptime('22-09-2008', '%d-%m-%Y');
$timestamp = mktime(0, 0, 0, $a['tm_month'], $a['tm_day'], $a['tm_year']);
link|flag
it should be tm_mon instead of tm_month and tm_mday instead of tm_day – amarillion May 15 at 11:32
vote up 4 vote down

Be careful with functions like strtotime() that try to "guess" what you mean (it doesn't guess of course, the rules are here).

Indeed 22-09-2008 will be parsed as 22 September 2008, as it is the only reasonable thing.

How will 08-09-2008 be parsed? Probably 09 August 2008.

What about 2008-09-50? Some versions of PHP parse this as 20 October 2008.

So, if you are sure your input is in DD-MM-YYYY format, it's better to use the solution offered here: http://stackoverflow.com/questions/113829/date-to-timestamp-php#113871

link|flag
Valid concern. I guess strtotime() relies in your locale. – Till Sep 23 '08 at 9:17
vote up 1 vote down

Using mktime:

list($day, $month, $year) = explode('-', '22-09-2008');
echo mktime(0, 0, 0, $month, $day, $year);
link|flag
That's what I've always done. Explode it on - or / or . or whatever it's separated on, then mktime. – Rich Bradshaw Sep 22 '08 at 17:25
vote up 0 vote down

Thanks to both!

link|flag
Use the comment feature to reply to people. Don't post a new answer. – epochwolf Sep 22 '08 at 13:32
Also, Owen's answer should be accepted as best answer to your question. Unless there's something you didn't tell us, he deserves the points! :) – Till Sep 23 '08 at 9:17
vote up 0 vote down

hi all,how can i extract date from the mysql timestamp field?

link|flag
Please don't append your question to another one - this is not a forum. Just start a new question. – amarillion May 15 at 10:45
vote up 0 vote down

echo strtotime ("now"); // if you want today

link|flag
vote up 0 vote down

FROM_UNIXTIME(mysql_timestamp), FROM_UNIXTIME(mysql_timestamp,format)

link|flag
vote up 0 vote down

$indate= '2009-07-24'; cinverttimestamp($indate);

function cinverttimestamp($indate){ list($year, $month, $day) = explode('-', $indate); $timestamp = mktime(0, 0, 0, $month, $day, $year); return $timestamp; } ?>

view from here

http://youropensource.com/projects/327-convert-date-to-timestamp-php

link|flag

Your Answer

Get an OpenID
or

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