PHPで月の最終日を取得するにはどうすればよいですか?
与えられた:
$a_date = "2009-11-23"
2009-11-30が欲しい。そして与えられた
$a_date = "2009-12-23"
2009-12-31が欲しい。
PHPで月の最終日を取得するにはどうすればよいですか?
与えられた:
$a_date = "2009-11-23"
2009-11-30が欲しい。そして与えられた
$a_date = "2009-12-23"
2009-12-31が欲しい。
回答:
t
指定された日付の月の日数を返します(のドキュメントをdate
参照):
$a_date = "2009-11-23";
echo date("Y-m-t", strtotime($a_date));
DateTime
:あなたはこのような何か行うことができます(new DateTime('2009-11-23'))->modify('last day of')
strtotime()を使用するコードは、2038年後に失敗します。(このスレッドの最初の回答にあるとおり)たとえば、次のコードを使用してみてください。
$a_date = "2040-11-23";
echo date("Y-m-t", strtotime($a_date));
答えは1970-01-31になります。
したがって、strtotimeの代わりに、DateTime関数を使用する必要があります。次のコードは2038年問題がなくても機能します。
$d = new DateTime( '2040-11-23' );
echo $d->format( 'Y-m-t' );
strtotime
コードにより次の結果が得られます:2040-11-30
私はこれが少し遅れていることを知っていますがPHP 5.3+
、DateTimeクラスを使用してこれを行うよりエレガントな方法があると思います:
$date = new DateTime('now');
$date->modify('last day of this month');
echo $date->format('Y-m-d');
$date = DateTime::createFromFormat('m/d/Y', '1/10/2014');
組み込みのPHP関数cal_days_in_month()もあります。
「この関数は、指定されたカレンダーの月の日数を返します。」 http://php.net/manual/en/function.cal-days-in-month。
echo cal_days_in_month(CAL_GREGORIAN, 11, 2009);
// = 30
これはうまくいくはずです:
$week_start = strtotime('last Sunday', time());
$week_end = strtotime('next Sunday', time());
$month_start = strtotime('first day of this month', time());
$month_end = strtotime('last day of this month', time());
$year_start = strtotime('first day of January', time());
$year_end = strtotime('last day of December', time());
echo date('D, M jS Y', $week_start).'<br/>';
echo date('D, M jS Y', $week_end).'<br/>';
echo date('D, M jS Y', $month_start).'<br/>';
echo date('D, M jS Y', $month_end).'<br/>';
echo date('D, M jS Y', $year_start).'<br/>';
echo date('D, M jS Y', $year_end).'<br/>';
何が問題なのか-私にとって最もエレガントなのは DateTime
見えないかなDateTime::createFromFormat
、ワンライナー
$lastDay = \DateTime::createFromFormat("Y-m-d", "2009-11-23")->format("Y-m-t");
あなたは翌月の最初の日付を作成してから、 strtotime("-1 day", $firstOfNextMonth)
mktime(0, 0, 0, $month+1, 0, $year);
strtotime()
とはmktime()
BECお勧めしません。月の端の日付決定やうるう年の計算などの既知のバグの数。以来DateTime
利用可能である、あなたは、将来的にすべての問題を避けるために、このクラスを使用する必要があります。同様に、これらの両方の機能を、私の前に何回も言ったstrtotime()
し、mktime()
2038年後に失敗することを、私はdownvoted理由の...
あなたの解決策はここにあります。
$lastday = date('t',strtotime('today'));
31
ためにSeptember
あなたはそれが正しくないことを知っているとしています。
月の最終日はいくつかの方法で見つけることができます。しかし、PHPのstrtotime()およびdate()関数を使用してこれを簡単に行うことができます。最終的なコードは次のようになると思います。
$a_date = "2009-11-23";
echo date('Y-m-t',strtotime($a_date));
しかし、PHP> = 5.2を使用している場合は、新しいDateTimeオブジェクトを使用することを強くお勧めします。たとえば、以下のように:
$a_date = "2009-11-23";
$date = new DateTime($a_date);
$date->modify('last day of this month');
echo $date->format('Y-m-d');
また、以下のような独自の関数を使用してこれを解決できます。
/**
* Last date of a month of a year
*
* @param[in] $date - Integer. Default = Current Month
*
* @return Last date of the month and year in yyyy-mm-dd format
*/
function last_day_of_the_month($date = '')
{
$month = date('m', strtotime($date));
$year = date('Y', strtotime($date));
$result = strtotime("{$year}-{$month}-01");
$result = strtotime('-1 second', strtotime('+1 month', $result));
return date('Y-m-d', $result);
}
$a_date = "2009-11-23";
echo last_day_of_the_month($a_date);
PHP DateTimeにCarbon API拡張機能を使用する場合、次のコマンドで月の最終日を取得できます。
$date = Carbon::now();
$date->addMonth();
$date->day = 0;
echo $date->toDateString(); // use toDateTimeString() to get date and time
$date->day = 0;
月の最終日を取得する方法があります。
//to get last day of current month
echo date("t", strtotime('now'));
//to get last day from specific date
$date = "2014-07-24";
echo date("t", strtotime($date));
//to get last day from specific date by calendar
$date = "2014-07-24";
$dateArr=explode('-',$date);
echo cal_days_in_month(CAL_GREGORIAN, $dateArr[1], $dateArr[0]);
私は遅れていますが、これを行う簡単な方法がいくつかあります。
$days = date("t");
$days = cal_days_in_month(CAL_GREGORIAN, date('m'), date('Y'));
$days = date("j",mktime (date("H"),date("i"),date("s"),(date("n")+1),0,date("Y")));
mktime()を使用すると、時間のすべての側面を完全に制御できます... IE
echo "<br> ".date("Y-n-j",mktime (date("H"),date("i"),date("s"),(11+1),0,2009));
日を0に設定して月を1上げると、前月の最終日になります。0と負の数は、さまざまな議論で同様の影響を及ぼします。 PHP:mktime-マニュアル
strtotimeが最も堅実な方法ではなく、どれも簡単に多目的に使用できるとは限らないと言っている人もいます。
次のように、cal_days_in_monthでstrtotimeを使用しています。
$date_at_last_of_month=date('Y-m-d', strtotime('2020-4-1
+'.(cal_days_in_month(CAL_GREGORIAN,4,2020)-1).' day'));
私はここの日付時間ヘルパークラスでそれをラップしました
https://github.com/normandqq/Date-Time-Helper
using
$dateLastDay = Model_DTHpr::getLastDayOfTheMonth();
そしてそれが行われます
function first_last_day($string, $first_last, $format) {
$result = strtotime($string);
$year = date('Y',$result);
$month = date('m',$result);
$result = strtotime("{$year}-{$month}-01");
if ($first_last == 'last'){$result = strtotime('-1 second', strtotime('+1 month', $result)); }
if ($format == 'unix'){return $result; }
if ($format == 'standard'){return date('Y-m-d', $result); }
}
使用できますt
日付関数で "と、特定の月の日数を取得。
コードは次のようになります。
function lastDateOfMonth($Month, $Year=-1) {
if ($Year < 0) $Year = 0+date("Y");
$aMonth = mktime(0, 0, 0, $Month, 1, $Year);
$NumOfDay = 0+date("t", $aMonth);
$LastDayOfMonth = mktime(0, 0, 0, $Month, $NumOfDay, $Year);
return $LastDayOfMonth;
}
for($Month = 1; $Month <= 12; $Month++)
echo date("Y-n-j", lastDateOfMonth($Month))."\n";
コードは自明です。それが役に立てば幸いです。