Reputation: 4499
Neither Php $_ENV
nor getenv()
returns the 'Vapor Reserved Environment Variables' which mentioned here: Reserved Environment Variables
How can we read them?
Upvotes: 0
Views: 681
Reputation: 1616
Read them in Laravel with env('KEY_NAME', 'Default Value')
, just as you regularly would.
Upvotes: 0