4
* The environment testing is reserved for PHPUnit testing. It has special
5
* conditions built into the framework at various places to assist with that.
6
* You can’t use it for your development.
10
|--------------------------------------------------------------------------
12
|--------------------------------------------------------------------------
13
| In development, we want to show as many errors as possible to help
14
| make sure they don't make it to production. And save us hours of
17
error_reporting(E_ALL);
18
ini_set('display_errors', '1');
21
|--------------------------------------------------------------------------
23
|--------------------------------------------------------------------------
24
| If true, this constant will tell the error screens to display debug
25
| backtraces along with the other error information. If you would
26
| prefer to not see this, set this value to false.
28
defined('SHOW_DEBUG_BACKTRACE') || define('SHOW_DEBUG_BACKTRACE', true);
31
|--------------------------------------------------------------------------
33
|--------------------------------------------------------------------------
34
| Debug mode is an experimental flag that can allow changes throughout
35
| the system. It's not widely used currently, and may not survive
36
| release of the framework.
38
defined('CI_DEBUG') || define('CI_DEBUG', true);