Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want insert many date into datebase, most of them all write as normally, so that I can use strtotime get the time like '1299XXXXXX'. And there still have some dates, write like this: day/month/year hour/minute/seconds

echo strtotime('12/03/2011 18:00:52'); //this will get 132293165220

Thus, I can not unit all the date in my datebase. How to solve the problem? Thanks.

share|improve this question
Can you please rephrase your question? Are you saying your users enter dates without complying with a format? – Dimitry Mar 12 '11 at 18:44

3 Answers

up vote 1 down vote accepted
$temp_date = strtotime('12/03/2011 18:00:52');
echo date('m/d/Y', $temp_date);

where 'm/d/Y' is format of your choose: if want full -> 'm/d/Y H:i:s',

if only date part -> 'm/d/Y'

more on http://us3.php.net/manual/en/function.date.php

share|improve this answer
right, use strtotime(date('Y-d-m H:i:s',strtotime('12/03/2011 18:00:52')));//1299949252 – yuli chika Mar 12 '11 at 18:50

I looked around and could not get anything comprehensive so i decided to write my own date converter. Well parameterized.

function convert_datetime($datestr,$separator,$mysqltouk) {
    if(!empty($datestr))
    {
      if($mysqltouk=='dmy')         
          {
        list($y,$m,$d ) = explode($separator, $datestr);
        $mk=mktime(0, 0, 0, $m, $d, $y);
        $timestamp=strftime('%d-%m-%Y',$mk);
      }
      else if ($mysqltouk='ymd')
          {
            list($d, $m, $y) = explode($separator, $datestr);
        $mk=mktime(0, 0, 0, $m, $d, $y);
        $timestamp=strftime('%Y-%m-%d',$mk);
          }
    }
      return $timestamp;
}
share|improve this answer

You can extract the date using the date function:

date('h:i:s', strtotime('12/03/2011 18:00:52'));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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