Welcome Guest, Not a member yet? Register   Sign In
Date Manipulation Class
#3

[eluser]xwero[/eluser]
in php5.3 you can add or substract dates using the date_add and date_sub methods in procedural or OO style.
Code:
$date = new DateTime(); // same as time function
echo $date->add(new DateInterval("P5D"))->format('Y-m-d');
with the DateTime object the strtotime date modifying functionality is for the modify method
Code:
$date = new DateTime(); // same as time function
echo $date->add('+5 day')->format('Y-m-d');


Messages In This Thread
Date Manipulation Class - by El Forum - 07-08-2009, 04:25 PM
Date Manipulation Class - by El Forum - 07-09-2009, 08:13 AM
Date Manipulation Class - by El Forum - 07-09-2009, 08:22 AM



Theme © iAndrew 2016 - Forum software by © MyBB