PHP code to get yesterday with tomorrow's date, there is a need for friends, can refer to the next. Example code:
"; echo "Yesterday:". Date ("Y-m-d", Strtotime ("-1 Day")), " "; echo "Tomorrow:". Date ("Y-m-d", Strtotime ("+1 Day")). " "; echo "One week later:". Date ("Y-m-d", Strtotime ("+1 Week")). " "; echo "2 days a week four hours two seconds after:". Date ("Y-m-d g:h:s", Strtotime ("+1 Week 2 Day 4 hours 2 Seconds")). " "; echo "Next week Four:". Date ("Y-m-d", Strtotime ("next Thursday")). " "; echo "Previous Monday:". Date ("Y-m-d", Strtotime ("Last Monday")). " "; echo "One months ago:". Date ("Y-m-d", Strtotime ("Last month"). " "; echo "One months later:". Date ("Y-m-d", Strtotime ("+1 Month")). " "; echo "Ten years later:". Date ("Y-m-d", Strtotime ("+10 Year")). " "; ? >
The function of the Strtotime () function is to parse a datetime description into a Unix timestamp int strtotime (string time [, int now]) PHP week to get the code:
Date function Parameter table: A-"AM" or "PM" A-"AM" or "PM" D-a few days, two digits, if less than two digits before 0; such as: "01" to "D"-Day of the week, three letters of English; such as: "Fri" F-month, English full name; such as: "January" h-12 hours of the hour system; such as: "01" to "a" H-24 hours of the hour system; such as: "00" to "g-12" hours of the hour system, less than two does not fill 0; such as: "1" to three "G-24 hours of the hour, less than two does not fill 0; such as: "0" to "the" I-minute; such as: "00" to "the" J-a few days, two digits, if less than two bits do not fill 0; such as: "1" to "~" L-day of the week, English full name; such as: "Friday" M-month, two digits, if less than two digits in front of 0; such as: "01" to "three" N-month, two digits, if less than two will not fill 0; such as: "1" to "ten" M-month, three English letters; such as: "Jan" s-second; such as: "00" to "the" S-the end of the English ordinal, two English letters; such as: "th", "nd" T-Specify the number of days of the month; e.g. "28" to "U"-Total number of seconds W-number of days of the week, such as: "0" (Sunday) to "6" (Saturday) Y-year, four digits; such as: "1999" Y-year, two digits; such as: "" "Z-the first day of the year; such as: "0" to "365" For more information on PHP date operation, please refer to: PHP get current date and time in detail learn PHP time stamp and date format conversion learn PHP time and date functions by instance |