Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我使用框架之前,我经常会这样定义(所以我的代码更容易阅读)
define('MINUTE', 60); define('HOUR', MINUTE * 60); // etc
Kohana 3 中是否有类似的东西,或者我应该自己指定这个(也许在 bootstrap.php 中)?
Kohana 3 静态类Date使您可以访问这些常量。查看源代码。
Date
用法如下
$week = Date::WEEK; $year = Date::YEAR; // etc
Kohana 有一些约会助手,但没有满足您的特定需求。自己申报就行了!