- /**
- * PHP Time Date function application
- * Edit bbs.it-home.org
- */
- echo "Today:". Date ("y-m-d"). "
";
- 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")). "
";
- ?>
Copy CodeThe function of the Strtotime () function is to parse the datetime description into the Unix timestamp int strtotime (string time [, int now]) PHP Week:
- Date ("L");
- Data can be obtained in English for weeks such as Sunday
- Date ("W");
- This can get the numbers for weeks like 123, note that 0 is Sunday
Copy CodeGet Chinese Week:
- $weekarray =array ("Day", "one", "two", "three", "four", "five", "six");
- echo "Week". $weekarray [Date ("W")];
Copy CodeGet specified date:
- $weekarray =array ("Day", "one", "two", "three", "four", "five", "six");
- echo "Week". $weekarray [Date ("W", "2011-11-11")];
Copy CodeAttached, date function parameter control. 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" |