PHP Calculate Dates
With the PHP date function it is very easy to format dates however you like. If you are running PHP5 with E_STRICT error_reporting, be sure to set your timezone before using the PHP date function:
PHP:
-
//PHP5 E_STRICT COMPLIANCE
-
date_default_timezone_set('America/Los_Angeles');
Here is the classic super simple example of how to format a date for a MySQL datetime field:
PHP:
This is how I calculate dates/times in the future or past:
Home | PHP | PHP Calculate Dates
You’re currently reading “ PHP Calculate Dates ,” an entry on BRADINO
- Published:
- 6.5.07 / 3pm
- Category:
- PHP












