|
42 | 42 |
|
43 | 43 | ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one |
44 | 44 | ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression |
45 | | -; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a |
| 45 | +; (e.g. E_ALL & ~), a quoted string ("bar"), or a reference to a |
46 | 46 | ; previously set variable or directive (e.g. ${foo}) |
47 | 47 |
|
48 | 48 | ; Expressions in the INI file are limited to bitwise operators and parentheses: |
@@ -444,11 +444,11 @@ memory_limit = 128M |
444 | 444 | ; operators. The error level constants are below here for convenience as well as |
445 | 445 | ; some common settings and their meanings. |
446 | 446 | ; By default, PHP is set to take action on all errors, notices and warnings EXCEPT |
447 | | -; those related to E_NOTICE, which together cover best practices and |
448 | | -; recommended coding standards in PHP. For performance reasons, this is the |
449 | | -; recommend error reporting setting. Your production server shouldn't be wasting |
450 | | -; resources complaining about best practices and coding standards. That's what |
451 | | -; development servers and development settings are for. |
| 447 | +; those related to E_NOTICE, which covers best practices and recommended coding |
| 448 | +; standards in PHP. For performance reasons, this is the recommended error |
| 449 | +; reporting setting. Your production server shouldn't be wasting resources |
| 450 | +; complaining about best practices and coding standards. That's what develoment |
| 451 | +; servers and development settings are for. |
452 | 452 | ; Note: The php.ini-development file has this setting as E_ALL. This |
453 | 453 | ; means it pretty much reports everything which is exactly what you want during |
454 | 454 | ; development and early testing. |
|
0 commit comments