Skip to content

Instantly share code, notes, and snippets.

@asilbalaban
Created March 16, 2014 19:25
Show Gist options
  • Select an option

  • Save asilbalaban/9588443 to your computer and use it in GitHub Desktop.

Select an option

Save asilbalaban/9588443 to your computer and use it in GitHub Desktop.
Auto ENV
if( $_SERVER['SERVER_ADDR'] == '127.0.0.1' ) {
define('ENVIRONMENT', 'development');
} else {
define('ENVIRONMENT', 'production');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment