我是php新手。我有一个场景,我保存了一个文件编号取决于财政年度。在我的情况下,我希望当财政年度改变时,数字从零开始。 这是我如何获得财政年度的代码
if (date('m') > 6) {
$year = date('Y') +1;
}
else {
$year = $date('Y');
}
我当前的财政年度是2016年,但是当7月开始时,我的财政年度将是2017年。
这里我很困惑系统如何知道财务年度已经改变并从零开始编号。
答案 0 :(得分:1)
使用strtotime()
在当年添加1年。
if (date('m') > 6) {
$year = date('Y', strtotime("+1 Year"));
}
else {
$year = date('Y');
}
echo $year;