Help for this page

Select Code to Download


  1. or download this
    # Was if ($$user_hash{SERVICE}->{$service}){
    # Equivalent to if (${$user_hash}{SERVICE}->{$service}){
    if (exists $user_hash->{SERVICE}{$service}) {
    
  2. or download this
    # Was my @users = @$user_hash{SERVICE}->{$service}->{USER};
    my @users = @{ $user_hash->{SERVICE}{$service}{USER} };