I've found a few problems in applications I've been doing where methods like DateTime::diff would be of much assistance, but my host with PHP 5.2 does not support DateTime::diff or any other from 5.3.

Can anyone point to a class implementation similar to PHP's DateTime class from v5.3, but working for PHP 5.2?

Thanks in advance

link|improve this question

1  
Having had to write much code to cover functionality of this sort for Moodle in the past, I can tell you from experience that it's a very tall order. I don't like being the bearer of bad news, but I think you 'll be hard pressed to find a good port for PHP 5.2 -- who would go to all the trouble after 5.3 became available? – Jon Apr 29 '11 at 16:47
feedback

1 Answer

up vote 1 down vote accepted

I use following wrapper class in my php5.2 apps: http://pastebin.ca/2051944. Untill php5.3 was released - it saves much my time

link|improve this answer
looks nice, but I'm hoping not to convert all my dates to the new class – David Conde Apr 29 '11 at 16:41
1  
Broken link, anyway we can get this posted here instead? – Louis Sep 26 '11 at 0:38
feedback

Your Answer

 
or
required, but never shown

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