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 General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
<?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'));
?>
---
Simon Welsh
Admin of http://simon.geek.nz/
Windows is a joke operating system. Hell, it's not even an operating
system. NT is Not Tough enough for me either. 95 is how may times it
will crash an hour.
http://www.thinkgeek.com/brain/gimme.cgi?wid=81d520e5e
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php