php artisan config:clear
在 Laravel 项目中,如果执行了 php artisan config:cache
命令把配置文件缓存起来后,在 Tinker 中(Tinker 是 Laravel 自带的一个交互式命令行界面),使用 env
函数读取环境变量的值为 null
,只有执行 php artisan config:clear
清除配置缓存后就可以读取了
2024-03-20 12:53:22
php artisan config:clear
在 Laravel 项目中,如果执行了 php artisan config:cache
命令把配置文件缓存起来后,在 Tinker 中(Tinker 是 Laravel 自带的一个交互式命令行界面),使用 env
函数读取环境变量的值为 null
,只有执行 php artisan config:clear
清除配置缓存后就可以读取了