Skip to content

Instantly share code, notes, and snippets.

@jacobgraf
Last active June 14, 2018 16:38
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 jacobgraf/057e120252170c1b7e553e9d60827873 to your computer and use it in GitHub Desktop.
Save jacobgraf/057e120252170c1b7e553e9d60827873 to your computer and use it in GitHub Desktop.
.env Boolean Variable Function
<?php
// Custom Dotenv Boolean Support
if (! function_exists('evalBool')) {
function evalBool($value)
{
return (strcasecmp($value, 'true') ? false : true);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment