/php-time-constants

Constants representing various time intervals in seconds. Instead of doing crazy math.

PHP Time Constants

A helpful collection of time constants with their values in seconds. It saves time when developing an application and having to do the time conversions using math by hand. #firstworldpains

Feel free to use code, just please contribute your changes back to me.

Usage

T_{value of time}_{unit of time}

Example: 5 minutes in seconds

echo T_5_SECONDS;

Example: 1 month in seconds

echo T_1_MONTH;

Example: 2 weeks in seconds

echo T_2_WEEKS;