多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
看这个文件 app\console\kernel.php ~~~ class Kernel extends ConsoleKernel { /** * The commands provided by your application. * * @var array */ protected $commands = [ \App\Console\Commands\Inspire::class, ]; /** * Define the application's command schedule. * * @param \Illuminate\Console\Scheduling\Schedule $schedule * @return void */ protected function schedule(Schedule $schedule) { $schedule->command('inspire') ->hourly(); } } ~~~ 运行php artisan inspire就有每天一条名言警句