Skip to content

Instantly share code, notes, and snippets.

@macedd
Created October 6, 2017 18:06
Show Gist options
  • Save macedd/ad4f987421a75524bba947385862f5e7 to your computer and use it in GitHub Desktop.
Save macedd/ad4f987421a75524bba947385862f5e7 to your computer and use it in GitHub Desktop.
Simplest implementation of feature flags
<?php
const FEATURE_FLAGS = [
'MY_NEW_FEATURE' => false,
'MY_RELEASED_FEATURE' => true,
];
<?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];
}
<?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