정적 분석 결과 수정. 배열 선언 문제.
This commit is contained in:
@@ -62,7 +62,7 @@ function registerAuction() {
|
||||
}
|
||||
for($i=7; $i <= 26; $i++) {
|
||||
if($occupied[$i] == 0) {
|
||||
$item[count($item)] = $i;
|
||||
$item[] = $i;
|
||||
}
|
||||
}
|
||||
$it = $item[rand() % count($item)];
|
||||
@@ -144,6 +144,13 @@ function processAuction() {
|
||||
$db = DB::db();
|
||||
$connect=$db->get();
|
||||
|
||||
$trader = [];
|
||||
$traderLog = [];
|
||||
$auctionLog = [];
|
||||
$bidderLog = [];
|
||||
$alllog = [];
|
||||
$history = [];
|
||||
|
||||
$date = date("Y-m-d H:i:s");
|
||||
|
||||
$query = "select year,month from game limit 1";
|
||||
|
||||
Reference in New Issue
Block a user