up vote 1 down vote favorite
share [g+] share [fb]
$doba = explode("/", $dob);

$date = date("Y-m-d", mktime(0,0,0, $doba[0], $doba[1], $doba[2]));

The above code turns any date i pass through into 1999-11-30 and i know it was working yesterday. Date is correct when I echo $doba. Anyone have any ideas?

Cheers

link|improve this question

You need to show us the values you are passing in as $dob for us to give a definitive answer. – davr Oct 29 '08 at 14:58
feedback

4 Answers

up vote 3 down vote accepted

What is the format of $doba? Remember mktime's syntax goes hour, minute, second, month, day year which can be confusing.

Here's some examples:

$doba = explode('/', '1991/08/03');
echo(date('Y-m-d', mktime(0,0,0, $doba[1], $doba[2], $doba[0]);

$doba = explode('/', '03/08/1991');
echo(date('Y-m-d', mktime(0,0,0, $doba[1], $doba[0], $doba[2]);
link|improve this answer
feedback

or even easier: $date = date('Y-m-d', strtotime($dob))

link|improve this answer
feedback

It is a bit overkill to use mktime in this case. Assuming $dob is in the following format:

MM/DD/YYYY

you could just to the following to acheive the same result (assuming $dob is always valid):

$doba = explode("/", $dob);
$date = vsprintf('%3$04d-%1$02d-%2$02d', $doba);
link|improve this answer
feedback

If you have issues with what jcoby said above, the strptime() command gives you more control by allowing you to specify the format as well.

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.