dongyong1942 2013-02-01 16:53
浏览 96
已采纳

在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?

  • 写回答

1条回答 默认 最新

  • ds342222222 2013-02-01 16:55
    关注

    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

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?