up vote 22 down vote favorite
7
share [g+] share [fb]

How do I get timestamp from e.g. 22-09-2008?

link|improve this question

60% accept rate
feedback

10 Answers

php's strtotime()

gives

$timestamp = strtotime('22-09-2008');
link|improve this answer
Elegant. I had forgotten about that! – Till Sep 22 '08 at 8:49
9  
How is it that you have not gotten the credit for this answer yet?! – Mark Tomlin Jun 13 '10 at 13:09
I like this kind of thing in PHP! – Camilo Martin Dec 11 '10 at 22:36
2  
do not use this solution before reading daremon's answer – facildelembrar Oct 20 '11 at 0:30
feedback

There is also strptime which expects exactly one format:

$a = strptime('22-09-2008', '%d-%m-%Y');
$timestamp = mktime(0, 0, 0, $a['tm_mon']+1, $a['tm_mday'], $a['tm_year']+1900);
link|improve this answer
4  
it should be tm_mon instead of tm_month and tm_mday instead of tm_day – amarillion May 15 '09 at 11:32
12  
Beware, strptime function is not available on Windows. – understack May 29 '10 at 12:03
feedback

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|improve this answer
2  
Valid concern. I guess strtotime() relies in your locale. – Till Sep 23 '08 at 9:17
1  
Note: on most non-english speaking countries, the format is dd-mm-yyyy, not mm-dd-yyyy. – Camilo Martin Dec 11 '10 at 22:49
feedback

Using mktime:

list($day, $month, $year) = explode('-', '22-09-2008');
echo mktime(0, 0, 0, $month, $day, $year);
link|improve this answer
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
There is a note in the PHP manual for the last parameter of the mktime function: "As of PHP 5.1.0, this parameter became deprecated. As a result, the new timezone handling features should be used instead." I've yet to discover what the new features are that they speak about though, as they haven't linked to it! – Highly Irregular Jan 11 at 1:00
That said, it worked for me! – Highly Irregular Jan 11 at 1:58
feedback

With DateTime API:

$dateTime = new DateTime('2011-05-17'); 
echo $dateTime->format('U'); 

// or 

$date = date_create('2011-05-17');
echo date_format($date, 'U');

// or

$date = new DateTime('2011-05-17');
echo $date->getTimestamp();

// or

$date = date_create('2011-05-17');
echo date_timestamp_get($date);

Demo

link|improve this answer
1  
I'd recommend this over my answer nowadays. – Till Jan 11 at 16:47
feedback

If you now the format use strptime, because strtotime does a guess for the format Since strptime is not implemented in Windows there is a custom function: see http://nl3.php.net/manual/en/function.strptime.php#86572

Remember that the returnvalue tm_year is from 1900! and tm_month is 0-11

After the you can use:

$a = strptime('22-09-2008', '%d-%m-%Y');
$timestamp = mktime(0, 0, 0, $a['tm_mon']+1, $a['tm_mday'], $a['tm_year']+1900)
link|improve this answer
feedback

Here is how I'd do it:

function dateToTimestamp($date, $format, $timezone='Europe/Belgrade') {

//returns an array containing day start and day end timestamps

$old_timezone=date_timezone_get();
date_default_timezone_set($timezone);
$date=strptime($date,$format);
$day_start=mktime(0,0,0,++$date['tm_mon'],++$date['tm_mday'],($date['tm_year']+1900));
$day_end=$day_start+(60*60*24);
date_default_timezone_set($old_timezone);
return array('day_start'=>$day_start, 'day_end'=>$day_end);

} $timestamps=dateToTimestamp('15.02.1991.', '%d.%m.%Y.', 'Europe/London'); $day_start=$timestamps['day_start'];

This way, you let the function know what date format you are using and even specify the timezone.

link|improve this answer
feedback

Here is a very simple and effectve solution using split and mtime functionns

$date="30/07/2010 13:24"; //date example
list($day, $month, $year, $hour, $minute) = split('[/ :]', $date); 
//the variables should be arranged acording to your date format and so the separators
$timestamp=mktime($hour, $minute,0, $month, $day, $year);
echo date("r", $timestamp);

I worked like a charm for me.

link|improve this answer
feedback

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

link|improve this answer
feedback

FROM_UNIXTIME(mysql_timestamp), FROM_UNIXTIME(mysql_timestamp,format)

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.