Hi again, Le Thu, 17 Apr 2008 21:10:44 +1200, Simon Welsh <simon@xxxxxxxxxxx> a écrit : > On 17/04/2008, at 9:05, David BERCOT wrote: > > Hi, > > > > I've got a problem with DateTime. I have a short code which gives an > > error : > > > > <CODE> > > $date = new DateTime(date("d/m/Y")); > > $date->modify("-1 month"); > > $mois_en_cours1 = $date->format("Y-m"); > > $date->modify("-1 month"); > > $mois_en_cours2 = $date->format("Y-m"); > > $date->modify("-1 month"); > > $mois_en_cours3 = $date->format("Y-m"); > > </CODE> > > > > <ERROR> > > <b>Fatal error</b>: Class 'DateTime' not found in > > <b>/var/www2/dacg_visio/index.html</b> on line <b>244</b><br /> > > </ERROR> > > > > If I look at the documentation : > > http://fr3.php.net/manual/fr/function.date-modify.php > > it seems to work if PHP version is above 5.1.0 (I am in 5.1.6 !). > > > > Do you have any idea about this error (Debian/Apache2) ? > > Do you have another way to obtain $mois_en_cours1, 2, 3 without > > DateTime ? > > > > Thank you very much. > > > > David. > > > <?php > $mois_en_cours1 = date('Y-m', strtotime('-1 month')); > $mois_en_cours2 = date('Y-m', strtotime('-2 month')); > $mois_en_cours3 = date('Y-m', strtotime('-3 month')); > ?> Great ;-) Thank you very much ! David. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php