Skip to content

Instantly share code, notes, and snippets.

@psaia
Created July 13, 2010 20:17
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 psaia/474454 to your computer and use it in GitHub Desktop.
Save psaia/474454 to your computer and use it in GitHub Desktop.
<?php
$production_server = strpos($_SERVER["SERVER_NAME"], 'theProductionServer.com') !== false;
$staging_server = strpos($_SERVER["SERVER_NAME"], 'theStagingServer.com') !== false;
if ($staging_server)
{
}
elseif ($production_server)
{
}
else
{
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment