如何利用php语法给指定年份计算天数,下面web建站小编给大家简单介绍一下具体实现方法!
方法一:指定年的天数
function countDaysInYear($year) { if ($year % 4 == 0) { if ($year % 100 == 0 && $year % 400 != 0) { return 365; } else { return 366; } } else { return 365; } } echo countDaysInYear(2023);
方法二:指定日期的天数
function getDayOfYear($date) { $now = strtotime($date); $start = strtotime(date('Y', $now) .'-01-01'); return floor(($now - $start) / (60 * 60 * 24)) + 1; } echo getDayOfYear('2023-01-22');
上面是“如何利用php语法计算天数”的全面内容,想了解更多关于 php入门 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_3924.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!