Skip to content

Instantly share code, notes, and snippets.

@AlexMcowkin
Created April 7, 2015 13:39
Show Gist options
  • Save AlexMcowkin/c43269082aa03a213681 to your computer and use it in GitHub Desktop.
Save AlexMcowkin/c43269082aa03a213681 to your computer and use it in GitHub Desktop.
CODEIGNITER: switch ENVIRONMENT
<?php
switch($_SERVER["HTTP_HOST"])
{
case "makovkin.info": define('ENVIRONMENT', 'production');
break;
case "makovkin.loc": define('ENVIRONMENT', 'development');
break;
default: define('ENVIRONMENT', 'development');
break;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment