Ayın PHP son günü

12 Cevap php

PHP nasıl ayın son günü alabilirim?

Verilen:

$a_date = "2009-11-23"

Ben 2009/11/30 istiyorum; ve verilen

$a_date = "2009-12-23"

Ben 2009/12/31 istiyorum.

12 Cevap

The code using strtotime() will fail after year 2038. (as given in the first answer in this thread) For example try using the following:

$a_date = "2040-11-23";
echo date("Y-m-t", strtotime($a_date));

1970/01/31: Bu kadar cevap verecektir

So instead of strtotime, DateTime function should be used. Following code will work without Year 2038 problem:

$d = new DateTime( '2040-11-23' ); 
echo $d->format( 'Y-m-t' );

PHP fonksiyon inşa cal_days_in_month() de var?

"This function will return the number of days in the month of year for the specified calendar." http://php.net/manual/en/function.cal-days-in-month.

echo cal_days_in_month(CAL_GREGORIAN, 11, 2009); 
// = 30

Siz bir sonraki ayın ilk bir tarih oluşturmak ve sonra kullanabilirsiniz strtotime("-1 day", $firstOfNextMonth)

Bu çalışması gerekir:

$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/>';

Ben bu biraz geç olduğunu biliyorum ama DateTime sınıfını kullanarak PHP 5.3+ ile yapmanın daha şık bir yolu olduğunu düşünüyorum:

$date = new DateTime('now');
$date->modify('last day of this month');
echo $date->format('Y-m-d');

Sizin çözüm burada ..

$lastday = date('t',strtotime('today'));

Ayrıca datetime ile kullanabilirsiniz

$date = new \DateTime();
$nbrDay = $date->format('t');
$lastDay = $date->format('Y-m-t');
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); }
}

http://zkinformer.com/?p=134

I have wrapped it in my date time helper class here https://github.com/normandqq/Date-Time-Helper using $dateLastDay = Model_DTHpr::getLastDayOfTheMonth();

Ve o yapılır

Burada tam bir fonksiyonudur:

public function get_number_of_days_in_month($month, $year) {
    // Using first day of the month, it doesn't really matter
    $date = $year."-".$month."-1";
    return date("t", strtotime($date));
}

Bu çıkış şu olacaktır:

echo get_number_of_days_in_month(2,2014);

Çıktı: 28

Siz "t" tarih fonksiyonu belirli bir ay içinde gün sayısını elde etmek için kullanabilirsiniz.

Kod böyle bir şey olacak:

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";

Kod kendini açıklanmıştır. Bu yüzden yardımcı olur umarım.