如何在托管在网络中的应用程序中运行这些工匠命令?我的 cpanel 中是否有一个 cmd 可以执行这些命令?提前致谢。

  • php artisan clear:cache
  • php 工匠 View :清除
  • 最佳答案

    现在在 Laravel 5.8 中,你不能将 对象 传递给 call() func。您必须将 数组 [] 作为第二个参数传递给 call() func。

    Route::get('/clear-cache', function() {
        $output = [];
        \Artisan::call('cache:clear', $output);
        dd($output);
    });
    

    关于laravel - 我如何在 cpanel 中运行工匠命令,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47711072/

    10-13 23:23