Help for this page

Select Code to Download


  1. or download this
    if(
        $ENV{REQUEST_URI} =~ $regex
    ...
    ) {
        # ...
    }
    
  2. or download this
    local $_ = $ENV{REQUEST_URI};
    if(/$regex/ ? /$regex2/ : 1) {
        # ...
    }