Return to Snippet

Revision: 32713
at October 1, 2010 22:44 by Mat_


Initial Code
$date = date("Y-m-d");// current date

$date = strtotime(date("Y-m-d", strtotime($date)) . " +1 day");
$date = strtotime(date("Y-m-d", strtotime($date)) . " +1 week");
$date = strtotime(date("Y-m-d", strtotime($date)) . " +2 week");
$date = strtotime(date("Y-m-d", strtotime($date)) . " +1 month");
$date = strtotime(date("Y-m-d", strtotime($date)) . " +30 days");

Initial URL
http://www.kune-studio.com

Initial Description


Initial Title
Add days, weeks or month to php date

Initial Tags
date

Initial Language
PHP