This example describes how PHP obtains yesterday, today, and tomorrow's date. Share to everyone for your reference, as follows:
PHP returns yesterday's Date function get_last_date () {$tomorrow = Mktime (0,0,0,date ("M"), Date ("D") -1,date ("Y")), and return date ("y-m-d" , $tomorrow);} PHP returns today's Date function get_today_date () {$today =date ("y-m-d"); PHP returns tomorrow's Date function get_tomorrow_date () {$tomorrow = Mktime (0,0,0,date ("M"), Date ("D") +1,date ("Y")), and return date (" Y-m-d ", $tomorrow);}
More readers interested in PHP related content can view this site topic: "PHP Date and Time usage summary", "PHP common functions and skills summary" and "PHP Object-oriented Programming primer tutorial"
I hope this article is helpful to you in PHP programming.
The above introduces the method of PHP to get yesterday, today and tomorrow date, including the content, I hope that the PHP tutorial interested in a friend helpful.