php 给定年份的碳回收天数

lyfkaqu1  于 2023-10-15  发布在  PHP
关注(0)|答案(3)|浏览(93)

Carbon可以返回给定年份的天数吗?

$dt = Carbon::parse($year . '-'. 1 .'-' . $from);

    var_dump($dt->format('z') + 1 );

这似乎行不通

6ie5vjzr

6ie5vjzr1#

echo 'Days in the year: ', 365 + $dt->format('L');

L:是否是闰年;如果是闰年,则为1,否则为0

ffx8fchx

ffx8fchx2#

你可以用碳的性质

Carbon::parse('2020-01')->daysInYear //for year

Carbon::parse('2020-01')->daysInMonth //for month
yhqotfr8

yhqotfr83#

您可以通过使用比较

echo 'Days in the year: ', ($dt->isLeapYear() ? 366 : 365);

相关问题