Help for this page

Select Code to Download


  1. or download this
     for my $url ( @urls ){
        if( is_expired( $url ) ){
            makeUnavailable( $url );
        }
    }
    
  2. or download this
     
        if( is_expired( $url ) ){
            return redirectForbidden('home');
    ...
            return thePage( $url );
        }
    }