这是一种方式:
原文链接:https://www.f2er.com/laravel/132839.htmluse Symfony\Component\Console\Output\BufferedOutput; Route::get('/test',function() { $output = new BufferedOutput; Artisan::call('list',array(),$output); return $output->fetch(); });