Help for this page

Select Code to Download


  1. or download this
    my $array_ref = $adsobj_child->{member};
    foreach (@{$array_ref})
    {
      print "$_\n";
    }
    
  2. or download this
    my @array = @{$adsobj_child->{member}};
    foreach (@array)
    {
      print "$_\n";
    }