You have another bootstrap file to enable, depending on the server you are on. So
include "bootstrap.php";
In the production window, bootstrap.php will have a constant IS_DEV = FALSE
In the development window, bootstrap.php will have the same constantIS_DEV = TRUE
Thus, the same script will contain the same bootstrap.php file name, but the contents of the bootstrap will have different values for the constant IS_DEV.
source
share