Questions tagged «phpdotenv»

9
Laravel 5-env()始终返回null
我试图找出为什么我的env()助手总是回来null。这会引起麻烦,尤其是在app.php文件中env()(默认情况下广泛使用助手)。也许任何神秘的服务器设置? 我的环境文件: APP_ENV=production APP_KEY=base64:mymagickey= APP_DEBUG=false APP_LOG_LEVEL=info APP_URL=http://www.example.com etc... 编辑-我尝试了以下操作: php artisan cache:clear php artisan view:clear php artisan config:cache 当然,我正在使用这样的env帮助器:env('APP_ENV') 但是仍然没有成功。奇怪的是,$_ENVphp变量包含.env文件中的每个变量。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.