|
...
|
...
|
@@ -237,7 +237,7 @@ class WeekProject extends Command |
|
|
|
}
|
|
|
|
$arr[] = $content4;
|
|
|
|
foreach ($arr as $key => $val){
|
|
|
|
$content .= ($key + 1) .','.$val."/n";
|
|
|
|
$content .= ($key + 1) .','.$val.PHP_EOL;
|
|
|
|
}
|
|
|
|
$timestamp = strtotime('tomorrow 9:00 AM');
|
|
|
|
$tomorrowNineAM = date('Y-m-d H:i:s', $timestamp);
|
|
...
|
...
|
@@ -245,7 +245,7 @@ class WeekProject extends Command |
|
|
|
'project_id'=>$project_id,
|
|
|
|
'friend_id'=>$friend_id,
|
|
|
|
'type'=>MessagePush::TYPE_WEEK,
|
|
|
|
'content'=>'【全球搜V6.0周报】'."/n".$content,
|
|
|
|
'content'=>'【全球搜V6.0周报】'.PHP_EOL.$content,
|
|
|
|
'ref_ids'=>'',
|
|
|
|
'send_time'=>$tomorrowNineAM
|
|
|
|
];
|
...
|
...
|
|