日付MM-dd-yyyy
形式が与えられた場合、誰かが週の最初の日を取得するのを手伝ってくれますか?
ここに私が使用しているものがあります...
$day = date('w');
$week_start = date('m-d-Y', strtotime('-'.$day.' days'));
$week_end = date('m-d-Y', strtotime('+'.(6-$day).' days'));
$ day 曜日(日曜日= 0、月曜日= 1など)を表す0〜6の数字が含まれます。
$ week_start 現在の週の日曜日の日付がmm-dd-yyyyとして含まれています。
$ week_end 現在の週の土曜日の日付がmm-dd-yyyyとして含まれています。
strtotime('this week', time());
Time()を置き換えます。次の日曜日/最後の月曜日メソッドは、現在の日が日曜日/月曜日の場合は機能しません。
非常にシンプルな使用 strtotime
function :
echo date("Y-m-d", strtotime('monday this week')), "\n";
echo date("Y-m-d", strtotime('sunday this week')), "\n";
少し異なります PHPバージョン間 :
2015-03-16
2015-03-22
2015-03-23
2015-03-22
2015-03-30
2015-03-29
今週のような相対的な説明には独自のコンテキストがあります。以下は、月曜日または日曜日の場合の今週月曜日と日曜日の出力を示しています。
$date = '2015-03-16'; // monday
echo date("Y-m-d", strtotime('monday this week', strtotime($date))), "\n";
echo date("Y-m-d", strtotime('sunday this week', strtotime($date))), "\n";
$date = '2015-03-22'; // sunday
echo date("Y-m-d", strtotime('monday this week', strtotime($date))), "\n";
echo date("Y-m-d", strtotime('sunday this week', strtotime($date))), "\n";
繰り返しますが、少し異なります PHPバージョン間 :
2015-03-16
2015-03-22
2015-03-23
2015-03-29
2015-03-16
2015-03-22
2015-03-23
2015-03-22
2015-03-23
2015-03-22
2015-03-23
2015-03-29
2015-03-23
2015-03-29
2015-03-30
2015-03-29
複雑にしないでおく :
<?php
$dateTime = new \DateTime('2012-05-14');
$monday = clone $dateTime->modify(('Sunday' == $dateTime->format('l')) ? 'Monday last week' : 'Monday this week');
$sunday = clone $dateTime->modify('Sunday this week');
?>
ソース: PHPマニュアル
$givenday = date("w", mktime(0, 0, 0, MM, dd, yyyy));
これにより、0
=日曜日および6
=土曜日の指定された日付自体の曜日がわかります。そこから、必要な日まで逆算するだけです。
編集:以下のリンクはPHPのバージョンでは実行されなくなりました。 PHP 5.6で実行されているため、strtotimeの信頼性が向上しますが、完全ではありません。表の結果は、PHP 5.6からのライブ結果です。
価値のあるものとして、一貫した参照フレームを決定する際のstrtotimeの不安定な動作の内訳を以下に示します。
http://gamereplays.org/reference/strtotime.php
基本的にこれらの文字列のみが、あなたがそれらを呼び出すときにあなたが現在何曜日にいるかにかかわらず、あなたに同じ日付を確実に与えます:
strtotime("next monday");
strtotime("this sunday");
strtotime("last sunday");
この質問には良いものが必要です DateTime answer:-
function firstDayOfWeek($date)
{
$day = DateTime::createFromFormat('m-d-Y', $date);
$day->setISODate((int)$day->format('o'), (int)$day->format('W'), 1);
return $day->format('m-d-Y');
}
var_dump(firstDayOfWeek('06-13-2013'));
出力:-
string '06-10-2013' (length=10)
これは年の境界とうるう年に対処します。
次のコードは、任意のカスタム日付で動作するはずです。目的の日付形式を使用するだけです。
$custom_date = strtotime( date('d-m-Y', strtotime('31-07-2012')) );
$week_start = date('d-m-Y', strtotime('this week last monday', $custom_date));
$week_end = date('d-m-Y', strtotime('this week next sunday', $custom_date));
echo '<br>Start: '. $week_start;
echo '<br>End: '. $week_end;
PHP 5.2.17の結果でコードをテストしました:結果:
Start: 30-07-2012
End: 05-08-2012
月曜日を週の最初の日とすると、これは機能します。
echo date("M-d-y", strtotime('last monday', strtotime('next week', time())));
これはどう?
$first_day_of_week = date('m-d-Y', strtotime('Last Monday', time()));
$last_day_of_week = date('m-d-Y', strtotime('Next Sunday', time()));
ここでは、日曜日を週の最後の日として最初と土曜日と考えています。
$m = strtotime('06-08-2012');
$today = date('l', $m);
$custom_date = strtotime( date('d-m-Y', $m) );
if ($today == 'Sunday') {
$week_start = date("d-m-Y", $m);
} else {
$week_start = date('d-m-Y', strtotime('this week last sunday', $custom_date));
}
if ($today == 'Saturday') {
$week_end = date("d-m-Y", $m);
} else {
$week_end = date('d-m-Y', strtotime('this week next saturday', $custom_date));
}
echo '<br>Start: '. $week_start;
echo '<br>End: '. $week_end;
出力:
開始:05-08-2012
終了:2012年11月8日
これはany dateから週の最初と最後の日を取得するために使用しているものです。この場合、月曜日は週の最初の日です...
$date = date('Y-m-d') // you can put any date you want
$nbDay = date('N', strtotime($date));
$monday = new DateTime($date);
$sunday = new DateTime($date);
$monday->modify('-'.($nbDay-1).' days');
$sunday->modify('+'.(7-$nbDay).' days');
date($format, strtotime($date,' LAST SUNDAY + 1 DAY'));
を使用するだけです
これはどう?
$day_of_week = date('N', strtotime($string_date));
$week_first_day = date('Y-m-d', strtotime($string_date . " - " . ($day_of_week - 1) . " days"));
$week_last_day = date('Y-m-d', strtotime($string_date . " + " . (7 - $day_of_week) . " days"));
これを試して:
function week_start_date($wk_num, $yr, $first = 1, $format = 'F d, Y')
{
$wk_ts = strtotime('+' . $wk_num . ' weeks', strtotime($yr . '0101'));
$mon_ts = strtotime('-' . date('w', $wk_ts) + $first . ' days', $wk_ts);
return date($format, $mon_ts);
}
$sStartDate = week_start_date($week_number, $year);
$sEndDate = date('F d, Y', strtotime('+6 days', strtotime($sStartDate)));
(from このフォーラムスレッド )
これは私が見つけた最短で最も読みやすいソリューションです:
<?php
$weekstart = strtotime('monday this week');
$weekstop = strtotime('sunday this week 23:59:59');
//echo date('d.m.Y H:i:s', $weekstart) .' - '. date('d.m.Y H:i:s', $weekstop);
?>
strtotime
はnew DateTime()->getTimestamp()
よりも高速です。
5.3より前のPHPバージョンでは、指定された日付の週の最初の日が与えられます(この場合-2013年2月3日日曜日)。
<?php
function startOfWeek($aDate){
$d=strtotime($aDate);
return strtotime(date('Y-m-d',$d).' - '.date("w",$d).' days');
}
echo(date('Y-m-d',startOfWeek("2013-02-07")).'
');
?>
月曜日を週の始まりにしたい場合は、次のようにします。
$date = '2015-10-12';
$day = date('N', strtotime($date));
$week_start = date('Y-m-d', strtotime('-'.($day-1).' days', strtotime($date)));
$week_end = date('Y-m-d', strtotime('+'.(7-$day).' days', strtotime($date)));
これを行うスマートな方法は、PHPにタイムゾーンの違いと夏時間(DST)を処理させることです。これを行う方法を紹介しましょう。
この関数は、月曜日から金曜日までのすべての日を含めて生成します(平日を生成するのに便利です):
class DateTimeUtilities {
public static function getPeriodFromMondayUntilFriday($offset = 'now') {
$now = new \DateTimeImmutable($offset, new \DateTimeZone('UTC'));
$today = $now->setTime(0, 0, 1);
$daysFromMonday = $today->format('N') - 1;
$monday = $today->sub(new \DateInterval(sprintf('P%dD', $daysFromMonday)));
$saturday = $monday->add(new \DateInterval('P5D'));
return new \DatePeriod($monday, new \DateInterval('P1D'), $saturday);
}
}
foreach (DateTimeUtilities::getPeriodFromMondayUntilFriday() as $day) {
print $day->format('c');
print PHP_EOL;
}
これは、現在の週の月曜日から金曜日までの日時を返します。任意の日付で同じことを行うには、DateTimeUtilities ::getPeriodFromMondayUntilFriday
にパラメーターとして日付を渡します。したがって、
foreach (DateTimeUtilities::getPeriodFromMondayUntilFriday('2017-01-02T15:05:21+00:00') as $day) {
print $day->format('c');
print PHP_EOL;
}
//prints
//2017-01-02T00:00:01+00:00
//2017-01-03T00:00:01+00:00
//2017-01-04T00:00:01+00:00
//2017-01-05T00:00:01+00:00
//2017-01-06T00:00:01+00:00
OPが尋ねたように、月曜日にのみ興味がありますか?
$monday = DateTimeUtilities::getPeriodFromMondayUntilFriday('2017-01-02T15:05:21+00:00')->getStartDate()->format('c');
print $monday;
// prints
//2017-01-02T00:00:01+00:00
$monday = date('d-m-Y',strtotime('last monday',strtotime('next monday',strtotime($date))));
最初に次の月曜日を取得し、次の月曜日の「最後の月曜日」を取得する必要があります。したがって、指定された日付が月曜日の場合、先週の月曜日ではなく同じ日付が返されます。
$today_day = date('D'); //Or add your own date
$start_of_week = date('Ymd');
$end_of_week = date('Ymd');
if($today_day != "Mon")
$start_of_week = date('Ymd', strtotime("last monday"));
if($today_day != "Sun")
$end_of_week = date('Ymd', strtotime("next sunday"));
strptime()
を使用して日付を解析し、結果に対して date()
を使用します。
date('N', strptime('%m-%d-%g', $dateString));
<?php
/* PHP 5.3.0 */
date_default_timezone_set('America/Denver'); //Set apprpriate timezone
$start_date = strtotime('2009-12-15'); //Set start date
//Today's date if $start_date is a Sunday, otherwise date of previous Sunday
$today_or_previous_sunday = mktime(0, 0, 0, date('m', $start_date), date('d', $start_date), date('Y', $start_date)) - ((date("w", $start_date) ==0) ? 0 : (86400 * date("w", $start_date)));
//prints 12-13-2009 (month-day-year)
echo date('m-d-Y', $today_or_previous_sunday);
?>
(注:質問のMM、dd、yyyyは標準のphp日付形式の構文ではありません-意味がわからないため、$ start_dateにISO年月日を設定します)
今週の最初の日(月曜日)を取得する最も簡単な方法は次のとおりです。
strtotime("next Monday") - 604800;
ここで、604800-は1週間の秒数(60 * 60 * 24 * 7)です。
このコードは次の月曜日に取得され、1週間減少します。このコードは、どの曜日でもうまく機能します。今日が月曜日であっても。
$string_date = '2019-07-31';
echo $day_of_week = date('N', strtotime($string_date));
echo $week_first_day = date('Y-m-d', strtotime($string_date . " - " . ($day_of_week - 1) . " days"));
echo $week_last_day = date('Y-m-d', strtotime($string_date . " + " . (7 - $day_of_week) . " days"));
私のタイムゾーンがオーストラリアであり、strtotime()
が英国の日付を嫌っていることを考えると、これは非常にイライラします。
現在の日が日曜日の場合、strtotime("monday this week")
は翌日を返します。
これを克服するには:
注意:これはオーストラリア/英国の日付でのみ有効です
$startOfWeek = (date('l') == 'Monday') ? date('d/m/Y 00:00') : date('d/m/Y', strtotime("last monday 00:00"));
$endOfWeek = (date('l') == 'Sunday') ? date('d/m/Y 23:59:59') : date('d/m/Y', strtotime("sunday 23:59:59"));
先週の最初の日と、先週の最終日をDateTime
オブジェクトとして1つのライナーで示します。
$firstDay = (new \DateTime())->modify(sprintf('-%d day', date('w') + 7))
->setTime(0, 0, 0);
$lastDay = (new \DateTime())->modify(sprintf('-%d day', date('w') + 1))
->setTime(23, 59, 59);
それを行う別の方法....
$year = '2014';
$month = '02';
$day = '26';
$date = DateTime::createFromFormat('Y-m-d H:i:s', $year . '-' . $month . '-' . $day . '00:00:00');
$day = date('w', $date->getTimestamp());
// 0=Sunday 6=Saturday
if($day!=0){
$newdate = $date->getTimestamp() - $day * 86400; //86400 seconds in a day
// Look for DST change
if($old = date('I', $date->getTimestamp()) != $new = date('I', $newdate)){
if($old == 0){
$newdate -= 3600; //3600 seconds in an hour
} else {
$newdate += 3600;
}
}
$date->setTimestamp($newdate);
}
echo $date->format('D Y-m-d H:i:s');
私はそれを使用します:
$firstDate = date( 'Y-m-d', strtotime( 'Last Monday', strtotime('-1 week') ));
$lastDate = date( 'Y-m-d', strtotime( 'First Sunday', strtotime('-1 week') ));
これがお役に立てば幸いです!
私はこの解決策が役に立ったと感じました。前月曜日を取得するために月曜日でない場合は、単に減算します。クエリから取得した日付として$ lower_dateを使用しているため、前の月曜日に調整する必要があります。
//set this up to go backwards until you find monday
while(date('D',strtotime($lower_date))!='Mon'){
$lower_date = date('Y-m-d', strtotime($lower_date . ' - 1 day')); //increase the upper spec
}
Carbonライブラリも使用できます
$dateString = '02-21-2015'; // example in format MM-dd-yyyy
$date = Carbon::createFromFormat('m-d-Y', $dateString);
$date->hour(0)->minute(0)->second(0)->startOfWeek();
$dateString = $date->Format('m-d-Y'); // and you have got a string value "02-16-2015"
これは今日が月曜日です
function lastMonday(\DateTime $date) {
$timestamp = $date->getTimestamp();
$monday = ( 1 == date( 'N', $timestamp ));
if ($monday) {
return $timestamp;
} else {
return strtotime( 'last monday', $timestamp );
}
}
dateTimeの代わりにタイムスタンプを取得する場合は、最初の2行を変更します(date-> getTimestampを削除します)。
function lastMonday($timestamp) {
文字列を入力する場合は、最初の2行をこれに変更します
function lastMonday($dateString) {
$timestamp = strtotime($dateString);
私はこの質問に何度か反対しましたが、日付関数がこれを簡単にしたり明確にしたりしないことにいつも驚いていました。 DateTime
クラスを使用するPHP5のソリューションを次に示します。
/**
* @param DateTime $date A given date
* @param int $firstDay 0-6, Sun-Sat respectively
* @return DateTime
*/
function getFirstDayOfWeek(DateTime $date, $firstDay = 0) {
$offset = 7 - $firstDay;
$ret = clone $date;
$ret->modify(-(($date->format('w') + $offset) % 7) . 'days');
return $ret;
}
元の日付を変更しないように複製する必要があります。
私はこれに似た解決策を探していましたが、ようやく現在の週の各日を返すものを思いつきました。
//set current timestamp
$today = time();
//calculate the number of days since Monday
$dow = date('w', $today);
$offset = $dow - 1;
if ($offset < 0) {
$offset = 6;
}
//calculate timestamp for Monday and Sunday
$monday = $today - ($offset * 86400);
$tuesday = $monday + (1 * 86400);
$wednesday = $monday + (2 * 86400);
$thursday = $monday + (3 * 86400);
$friday = $monday + (4 * 86400);
$saturday = $monday + (5 * 86400);
$sunday = $monday + (6 * 86400);
//print dates for Monday and Sunday in the current week
print date("Y-m-d", $monday) . "\n";
print date("Y-m-d", $tuesday) . "\n";
print date("Y-m-d", $wednesday) . "\n";
print date("Y-m-d", $thursday) . "\n";
print date("Y-m-d", $friday) . "\n";
print date("Y-m-d", $saturday) . "\n";
print date("Y-m-d", $sunday) . "\n";
ここに投稿したdbunicに感謝します: http://www.redips.net/php/week-list-current-date/#comments
動作するはずです:
/**
* Returns start of most recent Sunday.
*
* @param null|int $timestamp
* @return int
*/
public static function StartOfWeek($timestamp = null) {
if($timestamp === null) $timestamp = time();
$dow = idate('w', $timestamp); // Sunday = 0, Monday = 1, etc.
return mktime(0, 0, 0, idate('m', $timestamp), idate('d', $timestamp) - $dow, idate('Y', $timestamp));
}
入力と出力はUNIXタイムスタンプです。 date
を使用してフォーマットします。
どうですか:
$date = "2013-03-18";
$searchRow = date("d.m.Y", strtotime('last monday',strtotime($date." + 1 day")));
echo "for date " .$date ." we get this monday: " ;echo $searchRow; echo '<br>';
それは最善の方法ではありませんが、テストし、今週にいる場合は正しい月曜日を取得し、月曜日にいる場合はその月曜日を取得します。