public function getendmouthtime()
{
$date=date("Y-m",time());
$date_arr=explode('-',$date);
$year=$date_arr[0];
立即学习“PHP免费学习笔记(深入)”;
$month=$date_arr[1];
$days_in_month = array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
if ($month 12)
{
return 0;
}
// Is the year a leap year?
if ($month == 2)
{
if ($year%400 == 0 OR ($year%4 == 0 AND $year%100 != 0))
{
return $year.'-'.$month.'-29';
}
}
return $endstro = strtotime($year.'-'.$month.'-'.$days_in_month[$month - 1]);
}
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号