$filePath = $path . 'sellers.log'; $schedule->command('box/import-xlsx/sellers')->user('www')->cron('* * * * *')->withoutOverlapping()->sendOutputTo($filePath); 如何修改这段代码,使数据以追加方式存入log日志
时间: 2023-05-17 21:02:38 浏览: 98
文件中?
可以将 $filePath 的赋值改为:
$filePath = $path . 'sellers.log';
$schedule->command('box/import-xlsx/sellers')->user('www')->cron('* * * * *')->withoutOverlapping()->appendOutputTo($filePath);
这样就可以以追加方式将数据存入log日志文件中了。
阅读全文