Le Thu, 17 Apr 2008 10:19:10 +0100, Stut <stuttle@xxxxxxxxx> a écrit : > On 17 Apr 2008, at 10:05, David BERCOT wrote: > > 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 ? > > Pre-5.2 you need to explicitly say you want the DateTime class. See > the note on this page: > http://fr3.php.net/manual/fr/datetime.installation.php > > Also note that it's experimental at the moment and therefore not > recommended for production usage. OK. So, my error is normal !!! Thank you very much. David. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php