# When you are developing your code you probably want these:
#
php_flag display_errors on
php_flag display_startup_errors on
php_value error_reporting 2047
php_flag log_errors off
#
# Fairly verbose error messages and warnings appear in the
# web output. Nothing is logged in the system error logs.
#
# You can't put PHP constants in here so you can build up the
# bits you want set from the following:
# E_ALL is 2047
# E_ERROR is 1
# E_WARNING is 2
# E_PARSE is 4
# E_NOTICE is 8
# E_CORE_ERROR is 16
# E_CORE_WARNING is 32
# E_COMPILE_ERROR is 64
# E_COMPILE_WARNING is 128
# E_USER_ERROR is 256
# E_USER_WARNING is 512
# E_USER_NOTICE is 1024