How to get the week of the month for a date in php

藏色散人
Release: 2023-03-11 12:50:01
Original
3818 people have browsed it

php method to get the week of the month for a date: first create a PHP sample file; then pass "date('d', $time)-(8 - $wk_day);echo $day<=0 ? 1:ceil($day / 7) 1;"Get the day of the month and the week of the month.

How to get the week of the month for a date in php

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer

How does php get the week of the month when the date is?

The PHP acquisition date belongs to the first week of the month. The simplest acquisition day is the first week of the month.

 $week, 'weekof' => $weekof];
}
 
function get_week_block($sdefaultDate = false, $first = 1){
//当前日期    
//$first =1 表示每周星期一为开始日期 0表示每周日为开始日期  
if(!$sdefaultDate)$sdefaultDate = time();
if(is_numeric($sdefaultDate))$sdefaultDate = date('Y-m-d', $sdefaultDate);
//获取当前周的第几天 周日是 0 周一到周六是 1 - 6  
$w=date('w', strtotime($sdefaultDate));  
//获取本周开始日期,如果$w是0,则表示周日,减去 6 天  
$week_start=date('Y-m-d',strtotime("$sdefaultDate -".($w ? $w - $first : 6).' days'));  
//本周结束日期  
$week_end=date('Y-m-d',strtotime("$week_start +6 days"));
return array(strtotime($week_start.' 00:00:00'), strtotime($week_end.' 23:59:59'));
}
Copy after login

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to get the week of the month for a date in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!