Skip to content

Instantly share code, notes, and snippets.

@mihow
Created January 29, 2020 01:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mihow/b17628430e4c4e1a3bd9089974b75a78 to your computer and use it in GitHub Desktop.
Save mihow/b17628430e4c4e1a3bd9089974b75a78 to your computer and use it in GitHub Desktop.
Cast env var to boolean with default value in PHP
# https://craftcms.stackexchange.com/questions/13584/devmode-phpdotenv-variable-ignored
'devMode' => filter_var(getenv('DEV_MODE') ?: false, FILTER_VALIDATE_BOOLEAN),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment