Carbon可以返回给定年份的天数吗?
$dt = Carbon::parse($year . '-'. 1 .'-' . $from); var_dump($dt->format('z') + 1 );
这似乎行不通
6ie5vjzr1#
echo 'Days in the year: ', 365 + $dt->format('L');
L:是否是闰年;如果是闰年,则为1,否则为0
L
1
0
ffx8fchx2#
你可以用碳的性质
Carbon::parse('2020-01')->daysInYear //for year Carbon::parse('2020-01')->daysInMonth //for month
yhqotfr83#
您可以通过使用比较
echo 'Days in the year: ', ($dt->isLeapYear() ? 366 : 365);
3条答案
按热度按时间6ie5vjzr1#
L
:是否是闰年;如果是闰年,则为1
,否则为0
ffx8fchx2#
你可以用碳的性质
yhqotfr83#
您可以通过使用比较