PHP を使用して、その年または月の現在の週を計算します。 もちろん、最初の日の時刻をカスタマイズし、カスタマイズした最初の日を基準とした時間を計算することもできます。 . 学校関連のプロジェクトを行うときに使用される可能性があるので、ここで共有します。具体的な機能コードは以下の通りです。
/* [PHP]计算当前时间相对于第一天是第几周的函数 功能:返回但前是第几周 参数:$firstDate,第一天的日期或者第一天的时间戳,默认为今年的第一天 返回值:int author:www.scutephp.com */ function current_week($firstDate=''){ $firstDate=empty($firstDate)?strtotime(date('Y').'-01-01'):(is_numeric($firstDate)?$firstDate:strtotime($firstDate)); //开学第一天的时间戳 list($year,$month,$day)=explode('-',date('Y-n-j',$firstDate)); $time_chuo_of_first_day=mktime(0,0,0,$month,$day,$year); //今天的时间戳 list($year,$month,$day)=explode('-',date('Y-n-j')); $time_chuo_of_current_day=mktime(0,0,0,$month,$day,$year); $zhou=intval(($time_chuo_of_current_day-$time_chuo_of_first_day)/60/60/24/7)+1; return $zhou; }
PHP 特定の日のその年の週を計算します
echo intval(date('W',strtotime('2012-10-30')));