Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    my $uri  = URI->new( $ENV{REQUEST_URI} );
    my $page = ($uri->path_segments)[-2];
    
  2. or download this
    my $page = (map $_ ? $_ : (), $uri->path_segments)[-1];