Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Algimantas Stancelis

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Sample date calculations

   1  
   2    Today: <?php echo date('Y-m-d') ?> <br />
   3    Tomorrow: <?php echo date('Y-m-d', strtotime('+1 day')) ?> <br />
   4    1 week later: <?php echo date('Y-m-d', strtotime('+1 week')) ?> <br />
   5    1 month later: <?php echo date('Y-m-d', strtotime('+1 month')) ?> <br />
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS