How can I convert this string 05/Feb/2010:14:00:01 to unixtime ?

link|improve this question

feedback

7 Answers

up vote 3 down vote accepted

For PHP 5.3 this should work. You may need to fiddle with passing $dateInfo['is_dst'], wasn't working for me anyhow.

$date = '05/Feb/2010:14:00:01';
$dateInfo = date_parse_from_format('d/M/Y:H:i:s', $date);
$unixTimestamp = mktime(
    $dateInfo['hour'], $dateInfo['minute'], $dateInfo['second'],
    $dateInfo['month'], $dateInfo['day'], $dateInfo['year'],
    $dateInfo['is_dst']
);

Versions prior, this should work.

$date = '05/Feb/2010:14:00:01';
$format = '@^(?P<day>\d{2})/(?P<month>[A-Z][a-z]{2})/(?P<year>\d{4}):(?P<hour>\d{2}):(?P<minute>\d{2}):(?P<second>\d{2})$@';
preg_match($format, $date, $dateInfo);
$unixTimestamp = mktime(
    $dateInfo['hour'], $dateInfo['minute'], $dateInfo['second'],
    date('n', strtotime($dateInfo['month'])), $dateInfo['day'], $dateInfo['year'],
    date('I')
);

You may not like regular expressions. You could annotate it, of course, but not everyone likes that either. So, this is an alternative.

$day = $date[0].$date[1];
$month = date('n', strtotime($date[3].$date[4].$date[5]));
$year = $date[7].$date[8].$date[9].$date[10];
$hour = $date[12].$date[13];
$minute = $date[15].$date[16];
$second = $date[18].$date[19];

Or substr, or explode, whatever you wish to parse that string.

link|improve this answer
It is not working at all. It says date_parse_from_format is un-defined. – Sarah Aug 26 '11 at 6:53
@xcoder, reread my answer please. – erisco Aug 26 '11 at 21:39
feedback

You should look into the strtotime() function.

link|improve this answer
I looked but cant get it to work – streetparade Feb 8 '10 at 16:07
Your string might not be compatible with strtotime(); you might have to format it a little first. – Johannes Gorset Feb 8 '10 at 16:16
feedback

Use the strtotime function:

Example:

 $date = "25 december 2009";
 $my_date = date('m/d/y', strtotime($date));
 echo $my_date;
link|improve this answer
I cant see any supported formats by strtotime in the manual – streetparade Feb 8 '10 at 16:08
@streetparade: i mean for example you can not pass to it all sorts of strings for the date eg "28 of the December two thousand ten" – Sarfraz Feb 8 '10 at 16:10
It's worth noting strtotime also supports key words and phrases like 'yesterday' or 'this day next week' ;p – Rowan Feb 8 '10 at 17:34
feedback

Simple exploding should do the trick:

$monthNamesToInt = array('Jan'=>1,'Feb'=>2, 'Mar'=>3 /*, [...]*/ );
$datetime = '05/Feb/2010:14:00:01';
list($date,$hour,$minute,$second) = explode(':',$datetime);
list($day,$month,$year) = explode('/',$date);

$unixtime = mktime((int)$hour, (int)$minute, (int)$second, $monthNamesToInt[$month], (int)$day, (int)$year);
link|improve this answer
feedback

If you're up for it, use the DateTime class

link|improve this answer
feedback

Try this:

$new_date=date('d-m-Y', strtotime($date));
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.