0

我需要检查是否缺少 10 天或更短的时间才能到达某个日期。

我正在尝试这个:

   if(date('d/m/Y') >= CakeTime::format('d/m/Y','30/04/2013','-10 days', true )) {

但显然 Caketime::format 工作不正常。

有什么帮助吗?

4

1 回答 1

0

CakePHP 不会阻止您使用常规的 PHP 功能。如果 PHP本身已经提供了您正在寻找的东西,那么它甚至是首选。

在 PHP 中,您可以使用以下方法计算两个日期之间的差异DateTime::diff()

在 StackOverflow 上快速搜索给了我这个问题,其中包含适当的示例:

php中的日期差异?

于 2013-04-03T06:59:33.247 回答