Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    {
        return +(innercall('test')||'') =~ /gzip/;
    }
    
  2. or download this
    return +(innercall('test')||'') =~ /gzip/;
    
  3. or download this
    return (innercall('test')||'') =~ /gzip/;
    
  4. or download this
    return +($r->header_in('Accept-Encoding')||'') =~ /gzip/;