Commit 1874e62
committed
fix: detailed error report is displayed in production environment
php > ini_set('display_errors', '0');
php > var_dump(ini_get('display_errors'));
string(1) "0"
php > ini_set('display_errors', 0);
php > var_dump(ini_get('display_errors'));
string(1) "0"
php > ini_set('display_errors', false);
php > var_dump(ini_get('display_errors'));
string(0) ""
php > ini_set('display_errors', null);
php > var_dump(ini_get('display_errors'));
string(0) ""
php > ini_set('display_errors', 'off');
php > var_dump(ini_get('display_errors'));
string(3) "off"1 parent 407c108 commit 1874e62
File tree
4 files changed
+18
-2
lines changed- app/Config/Boot
- system/Debug
4 files changed
+18
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
| 11 | + | |
10 | 12 | | |
11 | 13 | | |
12 | 14 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
| 10 | + | |
9 | 11 | | |
10 | 12 | | |
11 | 13 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
129 | 129 | | |
130 | 130 | | |
131 | 131 | | |
132 | | - | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
133 | 139 | | |
134 | 140 | | |
135 | 141 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
253 | 253 | | |
254 | 254 | | |
255 | 255 | | |
256 | | - | |
| 256 | + | |
| 257 | + | |
| 258 | + | |
| 259 | + | |
| 260 | + | |
| 261 | + | |
| 262 | + | |
257 | 263 | | |
258 | 264 | | |
259 | 265 | | |
| |||
0 commit comments