Created
October 6, 2017 18:06
-
-
Save macedd/ad4f987421a75524bba947385862f5e7 to your computer and use it in GitHub Desktop.
Simplest implementation of feature flags
This file contains 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
<?php | |
const FEATURE_FLAGS = [ | |
'MY_NEW_FEATURE' => false, | |
'MY_RELEASED_FEATURE' => true, | |
]; |
This file contains 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
<?php | |
function is_feature_enabled($feature) { | |
if (!defined('FEATURE_FLAGS')) | |
return false; | |
if (!array_key_exists($feature, FEATURE_FLAGS)) | |
return false; | |
return FEATURE_FLAGS[$feature]; | |
} |
This file contains 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
<?php | |
if (is_feature_enabled('MY_NEW_FEATURE')) { | |
// new feature code and stuff | |
} else { | |
// fallback to old feature code | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment