Home > php > Today, yesterday, tomorrow in PHP

Today, yesterday, tomorrow in PHP

Here is how to get the date of today, testerday, tomorrow, etc. in PHP:

$today = date("Y-m-d");
# 2011-01-10

$yesterday = date("Y-m-d", mktime(0,0,0, date("m"), date("d")-1, date("Y")));
# 2011-01-09

$tomorrow = date("Y-m-d", mktime(0,0,0, date("m"), date("d")+1, date("Y")));
# 2011-01-11

For more info, check the documentation.

About these ads
Categories: php Tags: , , , ,
  1. No comments yet.
  1. No trackbacks yet.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.

Join 42 other followers

%d bloggers like this: