背景
我们线上环境用的是Laravel 6.X版本,最近有新的需求上线后,我们都会使用 php artisan config:cache、php artisan route:cache 这个俩个命令 缓存配置文件、缓存路由,这样我们在访问应用的时候就不用再计算路由和加载配置文件所消耗的时间。
问题
我们的应用是多个端,所有多个端的用户Token,但是只有微信端的用户Token有问题,一直换取不成功,其余的正常
代码
$this->driver->select(config('gateway.ucenter.userhash'));
$value = $this->driver->hget($uid, $key);
$this->driver->select(env('TOKEN_AUTH_DB'));
return empty($value) ? '' : $value;
从上面的代码块中看到 $this->driver->select(env('TOKEN_AUTH_DB')); 这行代码通过ENV 的形式调用了配置文件,最终导致我们用户换取Token一直失败。 在config 文件外使用ENV 都会返回 NULL ,导致后面代码块相继出现问题。
以下是Laravel 官方的描述
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.
原文链接: http://laravel.p2hp.com/docs/9.x/helpers#method-env.
|