버그 수정

This commit is contained in:
2020-04-21 01:19:24 +09:00
parent 6af3c1d523
commit e229b207c1
8 changed files with 120 additions and 87 deletions
+2 -2
View File
@@ -776,13 +776,13 @@ class Util extends \utilphp\util
if($step > 0){
while($from < $to){
yield $from;
$from += 1;
$from += $step;
}
}
else{
while($from > $to){
yield $from;
$from -= 1;
$from -= $step;
}
}
}