$dayBeforeYesterdayStart]); } ); // 每15分钟执行一次 new Crontab('20 14 */2 * * *', function () { $yesterdayStart = date('Y-m-d', strtotime('-1 day')); dump($yesterdayStart . '更新' . GoogleAdsDateDatas::event . '开始'); Event::emit(GoogleAdsDateDatas::event, ['date' => $yesterdayStart]); } ); // 每15分钟执行一次 new Crontab('30 13 */2 * * *', function () { //获取今天的 0 点的YYYY - MM - DD格式 $todayStart = date('Y-m-d', strtotime('0 day')); dump($todayStart . '更新' . GoogleAdsDateDatas::event . '开始'); Event::emit(GoogleAdsDateDatas::event, ['date' => $todayStart]); } ); // 每15分钟执行一次 new Crontab('15 12 */2 * * *', function () { dump(date('Y-m-d H:i:s') . '更新' . GoogleAdsAssetRelations::event . '开始'); Event::emit(GoogleAdsAssetRelations::event, []); } ); // 每15分钟执行一次 new Crontab('30 * */2 * * *', function () { dump(date('Y-m-d H:i:s') . '更新' . GoogleAdsGroups::event . '开始'); Event::emit(GoogleAdsGroups::event, []); dump(date('Y-m-d H:i:s') . '更新' . GoogleAdsCampaigns::event . '开始'); Event::emit(GoogleAdsCampaigns::event, []); } ); // 每15分钟执行一次 new Crontab('5 * */2 * * *', function () { dump(date('Y-m-d H:i:s') . '更新' . GoogleAdsAds::event . '开始'); Event::emit(GoogleAdsAds::event, []); } ); // 每15分钟执行一次 new Crontab('25 */15 * * * *', function () { dump(date('Y-m-d H:i:s') . '更新' . GoogleAdsCreatives::event . '开始'); Event::emit(GoogleAdsCreatives::event, []); } ); new Crontab('25 11 */2 * * *', function () { dump(date('Y-m-d H:i:s') . '更新' . GoogleAdsAssets::event . '开始'); Event::emit(GoogleAdsAssets::event, []); } ); new Crontab('16 */14 * * * *', function () { dump(date('Y-m-d H:i:s') . '更新' . GoogleAdsCustomers::event . '开始'); Event::emit(GoogleAdsCustomers::event, []); } ); // 每15分钟执行一次 // new Crontab('58 */15 * * * *', function () { // dump(date('Y-m-d H:i:s') . '更新' . GoogleAdsCampaigns::type . '开始'); // Event::emit(GoogleAdsCampaigns::type, ['customer_id'=>4060397299]); // // }); // 每30分钟执行一次 // new Crontab('0 */30 * * * *', function () { // dump(date('Y-m-d H:i:s') . '更新' . V2ex::type . '开始'); // Event::emit(V2ex::type, null); // // dump(date('Y-m-d H:i:s') . '更新' . GitHub::type . '开始'); // Event::emit(GitHub::type, null); // // dump(date('Y-m-d H:i:s') . '更新' . JueJin::type . '开始'); // Event::emit(JueJin::type, null); // }); } }