1[error_reporting values]
2foo = E_ALL E_NOTICE
3error_reporting = E_ALL
4error_reporting1 = E_COMPILE_ERROR|E_RECOVERABLE_ERROR	|E_ERROR|E_CORE_ERROR
5error_reporting2 = E_ALL&~E_NOTICE
6error_reporting3 =  E_ALL & ~E_NOTICE
7error_reporting4 = E_ALL & ~E_NOTICE | E_PARSE
8
9['true or false']
10bool_true = 	true
11bool_yes  =  yes
12bool_on =	   on
13bool_false=false
14bool_off =Off
15bool_no=No
16bool_none= NoNe
17bool_null = NULl
18
19[strings]
20string_true = 	"true"
21string_yes  =  " yes"
22string_on =	 "  on "
23string_false="false"
24string_off ="Off "
25string_no="No	 "
26string_none=" NoNe"
27string_null = "NULl"
28