vote up 1 vote down star
$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

flag

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

4 Answers

vote up 3 vote down check

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|flag
vote up 0 vote down

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|flag
vote up 3 vote down

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

link|flag
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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