Created
March 16, 2013 00:35
-
-
Save legierski/5174309 to your computer and use it in GitHub Desktop.
.production / .development switch for your PHP codebase
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(file_exists('.production')) { | |
define('ENVIRONMENT', 'production'); | |
} | |
else if(file_exists('.development')) { | |
define('ENVIRONMENT', 'development'); | |
} | |
else { | |
exit('Missing .production/.development file.'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment