Reputation: 2047
How do operations with dates in cakephp?
I want to calculate the difference in days between two dates, for example: a date subtracting 10 days or a date and add 20 days.
How I do that?
Upvotes: 0
Views: 629
Reputation: 2790
You can use this:
CakeTime::format('r', '+20 days', true);
Take a look on this: http://book.cakephp.org/2.0/en/core-libraries/helpers/time.html
Maybe you wan't see this one too: http://www.php.net/manual/en/function.date.phpenter
Upvotes: 2