laravel config:cache 后的小坑
Posted songlen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel config:cache 后的小坑相关的知识,希望对你有一定的参考价值。
laravel 使用 php artisan config:cache 后 系统就会读取所有的配置文件集中到一起写入缓存,那么如果代码中 使用 env() 辅助函数获取 .env 里面的配置项就不起作用了!!
引用文档原话:If you execute the config:cache
command during your deployment process, you should be sure that you are only calling the env
function from within your configuration files. Once the configuration has been cached, the .env
file will not be loaded and all calls to the env
function will return null
.
以上是关于laravel config:cache 后的小坑的主要内容,如果未能解决你的问题,请参考以下文章