Home > Backend Development > PHP Tutorial > Use PHP to get the codes for the dates of this week, last week, this month, last month, and this quarter_PHP Tutorial

Use PHP to get the codes for the dates of this week, last week, this month, last month, and this quarter_PHP Tutorial

WBOY
Release: 2016-07-21 15:45:02
Original
963 people have browsed it

Copy code The code is as follows:

echo date("Ymd",strtotime("now")), "n";
echo date("Ymd",strtotime("-1 week Monday")), "n";
echo date("Ymd",strtotime("-1 week Sunday")), "n";
echo date("Ymd",strtotime("+0 week Monday")), "n";
echo date("Ymd",strtotime("+0 week Sunday")), "n";


//date('n') Month
//date("w") Day of the week
//date("t") Number of days in this month

echo '
Last week:
';
echo date("Y-m-d H:i:s",mktime(0, 0 , 0,date("m"),date ("d")-date("w")+1-7,date("Y"))),"n";
echo date("Y-m-d H:i:s",mktime(23,59 ,59,date("m"),date("d")-date("w")+7-7,date("Y"))),"n";
echo '
This week:
';
echo date("Y-m-d H:i:s",mktime(0, 0 , 0,date("m"),date("d")-date("w ")+1,date("Y"))),"n";
echo date("Y-m-d H:i:s",mktime(23,59,59,date("m"),date( "d")-date("w")+7,date("Y"))),"n";

echo '
Last month:
';
echo date("Y-m-d H:i:s",mktime(0, 0 , 0,date("m")-1,1,date("Y"))),"n";
echo date ("Y-m-d H:i:s",mktime(23,59,59,date("m") ,0,date("Y"))),"n";
echo '
this Month:
';
echo date("Y-m-d H:i:s",mktime(0, 0 , 0,date("m"),1,date("Y")))," n";
echo date("Y-m-d H:i:s",mktime(23,59,59,date("m"),date("t"),date("Y")))," n";

$getMonthDays = date("t",mktime(0, 0 , 0,date('n')+(date('n')-1)%3,1,date( "Y")));//The number of days in the last month of this quarter
echo '
This quarter:
';
echo date('Y-m-d H:i:s', mktime (0, 0, 0,date('n')-(date('n')-1)%3,1,date('Y'))),"n";
echo date('Y-m-d H:i:s', mktime(23,59,59,date('n')+(date('n')-1)%3,$getMonthDays,date('Y'))),"n" ;

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/320434.htmlTechArticleCopy the code as follows: echo date("Ymd",strtotime("now")), "n"; echo date("Ymd",strtotime("-1 week Monday")), "n"; echo date("Ymd",strtotime("-1 week Sunday")), "n"; echo dat...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template