📜  从 cpanle larael 中删除缓存 - PHP (1)

📅  最后修改于: 2023-12-03 15:21:52.239000             🧑  作者: Mango

从 cPanel Laravel 中删除缓存 - PHP

在使用 Laravel 开发的过程中,经常需要删除缓存来使得修改的代码生效。下面将介绍如何在 cPanel Laravel 中删除缓存。

清除配置缓存

要清除 Laravel 应用程序的配置缓存,可以使用以下命令:

php artisan config:clear

这将删除 bootstrap/cache/config.php 文件,使得应用程序重新加载任何配置更改。

清除路由缓存

要清除 Laravel 应用程序的路由缓存,可以使用以下命令:

php artisan route:clear

这将删除 bootstrap/cache/routes.php 文件,使得应用程序重新加载所有路由定义。

清除视图缓存

要清除 Laravel 应用程序的视图缓存,可以使用以下命令:

php artisan view:clear

这将删除 storage/framework/views 目录下的所有文件,使得应用程序重新编译所有视图文件。

清除应用程序缓存

要清除 Laravel 应用程序的所有缓存,可以使用以下命令:

php artisan cache:clear

这将删除 bootstrap/cache 目录下的所有文件,包括配置、路由、视图等缓存文件。

在 cPanel Laravel 中使用命令提示符

在 cPanel Laravel 中使用上述命令时,需要在命令前加上 php /path/to/artisan 的前缀。例如,要清除配置缓存,可以这样做:

php /path/to/artisan config:clear
总结

清除缓存是 Laravel 开发中常用的操作。在 cPanel Laravel 中,我们可以使用 php /path/to/artisan 的前缀,来清除配置、路由、视图以及所有缓存,以实现修改代码的即时生效。