답변:
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
나는 이것이 조금 늦다는 것을 알고 있지만 DateTime 클래스 PHP 5.3+
를 사용하여 이를 수행하는보다 우아한 방법이 있다고 생각합니다 .
$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");
다음 달 1 일의 날짜를 만든 다음 strtotime("-1 day", $firstOfNextMonth)
mktime(0, 0, 0, $month+1, 0, $year);
strtotime()
및 mktime()
낙담 bec. 월말의 날짜 결정 및 윤년 계산과 같은 알려진 버그 이후 DateTime
수 있습니다, 당신은 미래의 문제를 방지하기 위해이 클래스를 사용합니다. 등 두 가지 기능, 내 앞에 여러 번했다 strtotime()
및 mktime()
2038 이후에 실패 할 난을 downvoted 왜의 ...
PHP 5.3 이상을 사용하는 경우 이것을 시도하십시오.
$a_date = "2009-11-23";
$date = new DateTime($a_date);
$date->modify('last day of this month');
echo $date->format('Y-m-d');
다음 달 마지막 날짜를 찾으려면 다음과 같이 수정하십시오.
$date->modify('last day of 1 month');
echo $date->format('Y-m-d');
등등..
당신의 해결책은 여기 있습니다 ..
$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;
당신이 한 달 현명한 달의 마지막 날짜를 얻는다면,
public function getLastDateOfMonth($month)
{
$date = date('Y').'-'.$month.'-01'; //make date of month
return date('t', strtotime($date));
}
$this->getLastDateOfMonth(01); //31
마지막 달에 도착하는 방법이 있습니다.
//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를
사용하여
날짜 시간 도우미 클래스에 래핑했습니다.
$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";
코드는 자체 설명되어 있습니다. 도움이 되길 바랍니다.