Skip to content

Instantly share code, notes, and snippets.

@phawk
Created January 15, 2012 12:14
Show Gist options
  • Select an option

  • Save phawk/1615666 to your computer and use it in GitHub Desktop.

Select an option

Save phawk/1615666 to your computer and use it in GitHub Desktop.
<?php
switch( $_SERVER['HTTP_HOST'] )
{
// Local Site
case 'local.ci.com':
define('SITE', 'local');
break;
// Development Site
case 'dev.ci.com':
define('SITE', 'development');
break;
// Live Site
default:
define('SITE', 'live');
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment