So I am working on this system that is sorting dates by decades. I am using make times and I have everything working fine until it hits the year 1900 or below. Afer that everything returns a Dec 24,1964 type date. Can anyone else me why this is happening and a possbile soltuion?

And the code for this:

//$decades is a string ex: '1950-1960'

$decade_array=explode('-',$decades);

$date_active=date("M-d-Y", mktime(0, 0, 0, 1,1 , trim($decade_array[0]) ));
$date_inactive=date("M-d-Y", mktime(0, 0, 0, 1, 1, trim($decade_array[1]) ));

echo $date_active.' '.$date_inactive;
link|improve this question

56% accept rate
feedback

2 Answers

up vote 2 down vote accepted

alternative procedural function

date_format(date_create('1234-01-01'), 'M-d-Y');
link|improve this answer
1  
(date_create(...) is an alias for new DateTime(...) and returns a DateTime object, both are available since PHP 5.2. date_format is an alias for DateTime->format() and takes a DateTime object as parameter.) – arnaud576875 Jan 30 '11 at 21:07
feedback

Try with the DateTime class:

$date = new DateTime("1234-01-01");
echo $date->format("M-d-Y"); // outputs Jan-01-1234

The DateTime class is available since PHP 5.2.

If you have PHP 5.3, use DateTime::createFromFormat:

$date = DateTime::createFromFormat('Y-m-d', "1234-01-01");
echo $date->format("M-d-Y");
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.