I am trying to write a function to format a date and time for me. I have an almost identical function which formats just a date. That function works fine. I just added some code to try and have it format the date with a time. It should return something like "May 18, 2009 9:50 PM" but I am getting this warning:

Warning: mktime() expects parameter 6 to be long, string given in
public_html/include/functions.php on line 421

Here is the code I have:

function dateTimeFormat($dateIn)
{
   $x = explode(" ",$dateIn);
   $y = explode("-",$x[0]);
   $z = explode(":",$x[1]);

   $year = $y[0]; 
   $month = $y[1];
   $day = $y[2];
   $hour = $z[0];
   $min = $z[1];

   $dateOut =date("F j, Y h:i A", mktime($hour, $min, 0, $month, $day, $year)); 

   return $dateOut;
}

What it is putting out is wrong too. It puts out:

December 31, 1969 07:00 PM

but the timestamp in the database is

2009-05-18 05:07:39
link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

PHP already has a perfectly good date-parsing function: strtotime(). It returns a Unix timestamp which you can pass to date().

In other words, your function can be reduced to this:

function dateTimeFormat($dateIn)
{
    return date("F j, Y h:i A", strtotime($dateIn));
}
link|improve this answer
That got rid of the warning, but it still is displaying wrong. It is still showing: December 31, 1969 07:00 PM but the timestamp in MySQL is 2009-05-18 00:00:00. – Josh Curren May 19 '09 at 2:17
I fixed the problem – Josh Curren May 19 '09 at 2:22
Um, how? Please share! – Jrgns May 19 '09 at 2:34
It was most likely a specific (and probably unrelated) problem with what he was passing to dateTimeFormat(). The code I gave will work as-is. – htw May 19 '09 at 3:17
You might also note that strtotime has a serious memory leak in PHP 5.2.8. – Jeff Ober May 19 '09 at 12:15
feedback

Your Answer

 
or
required, but never shown

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