We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
23时,对day+1 如果是5月31日,那么这里就变成 5月32日了,直接出错
498行
if (23 == $hour) { // 23点过后算子时,农历以子时为一天的起始 $day += 1; } $date = $this->makeDate("{$year}-{$month}-{$day}");
改为
if (23 == $hour) { // 23点过后算子时,农历以子时为一天的起始 $date = $this->makeDate("{$year}-{$month}-{$day} +1day"); } else { $date = $this->makeDate("{$year}-{$month}-{$day}"); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
23时,对day+1
如果是5月31日,那么这里就变成 5月32日了,直接出错
498行
改为
The text was updated successfully, but these errors were encountered: