Help for this page

Select Code to Download


  1. or download this
    $obj->{field};
    
  2. or download this
    $obj->field();
    
  3. or download this
    my @FIELDS = qw( a b c d );  # Put your field names here
    foreach my $field (@FIELDS) {
    ...
            return $self->{$field};
        };
    }