gpt4 book ai didi

laravel - 如何在 cpanel 中运行 artisan 命令

转载 作者:行者123 更新时间:2023-12-02 08:35:45 28 4
gpt4 key购买 nike

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

  • php artisan 清除:缓存
  • php artisan View :清除

最佳答案

现在在 Laravel 5.8 中,您无法将 object 传递给 call() 函数。您必须将数组[]作为第二个参数传递给call()函数。

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

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

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com