質問編集履歴

2

if($year < 1 || $year > 99999) {の部分の修正をしました

2021/07/29 01:43

投稿

patorioddo623
patorioddo623

スコア12

test CHANGED
File without changes
test CHANGED
@@ -30,7 +30,7 @@
30
30
 
31
31
  }
32
32
 
33
- if(isLeapYear($year) < 1 || isLeapYear($year) > 99999) {
33
+ if($year < 1 || $year > 99999) {
34
34
 
35
35
  return false;
36
36
 

1

必要ないタグ外しました

2021/07/29 01:43

投稿

patorioddo623
patorioddo623

スコア12

test CHANGED
File without changes
test CHANGED
File without changes