Blogger Information
Blog 7
fans 0
comment 0
visits 3108
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php生成本周-上周-本月-上月时间戳
ah this is的博客
Original
1380 people have browsed it

用php获取本周,上周,本月,上月,本季度日期的代码

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') 第几个月

//date("w") 本周周几

//date("t") 本月天数

 

echo '<br>上周:星期天查找上周存在问题<br>';

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 '<br>上周:比较准确<br>';

echo  strtotime(date('Y-m-d', strtotime("this week Monday", time())));

echo strtotime(date('Y-m-d', strtotime("this week Sunday", time()))) + 24 * 3600 - 1;

echo '<br>本周:星期天查找本周有问题<br>';

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 '<br>本周:比较准确<br>';

echo strtotime(date('Y-m-d', strtotime("last week Monday", time())));

echo strtotime(date('Y-m-d', strtotime("last week Sunday", time()))) + 24 * 3600 - 1;

echo '<br>上月:<br>';

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 '<br>本月:<br>';

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")));//本季度未最后一月天数

echo '<br>本季度:<br>';

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";

   



Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post