Help for this page

Select Code to Download


  1. or download this
    my $user;
    $user->{'host'} = '*'; # scalar one element
    
    # if $user->{host} is not a reference create a reference to a array
    $user->{host} = [ $user->{host} ] unless ref $user->{host};
    
  2. or download this
    $user->{host} = [ '*' ];