Igor Martins
Igor Martins

Reputation: 2047

Operations with dates in cakephp

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

Answers (1)

Guerra
Guerra

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

Related Questions