Annotation of embedaddon/php/ext/standard/tests/general_functions/parse_ini_booleans.data, revision 1.1.1.1

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>