Help for this page

Select Code to Download


  1. or download this
       $PAHASH->{$key}->[$index]
    #  hashref-> hash ->array
    
  2. or download this
       $PAHASH{$key}->[$index]
    #  hash element ->array
    
  3. or download this
       $PAHASH{$key}[$index]
    
  4. or download this
      ${$PAHASH{$key}[$index]}