I have some functions that I need to show only when the website starts in dev mode (or in the development environment). How can I programmatically determine which environment is currently in use?
eg.
// $inDevEnvironment = ? if ($inDevEnvironment) { // DEV feature here }
source share