作者 lyh

gx脚本

... ... @@ -306,7 +306,7 @@ class DownloadProject extends Command
}
$arr[] = $content4;
foreach ($arr as $key => $val){
$content = $key.','.$val;
$content .= $key.','.$val;
}
$timestamp = strtotime('tomorrow 9:00 AM');
$tomorrowNineAM = date('Y-m-d H:i:s', $timestamp);
... ...
... ... @@ -237,7 +237,7 @@ class WeekProject extends Command
}
$arr[] = $content4;
foreach ($arr as $key => $val){
$content = ($key + 1) .','.$val;
$content .= ($key + 1) .','.$val;
}
$timestamp = strtotime('tomorrow 9:00 AM');
$tomorrowNineAM = date('Y-m-d H:i:s', $timestamp);
... ...