Help for this page

Select Code to Download


  1. or download this
    ...
    if ( $session->is_new() ) {
    ...
        undef $session;
    } else {
    ...
    
  2. or download this
    ...
    if ( $session->is_new() ) {
    ...
        $session->delete();
    } else {
    ...
    
  3. or download this
    ...
    if ( $session->is_new() ) {
    ...
        eval { undef $session; };
    } else {
    ...