From: Mark W. <mew...@un...> - 2000-08-23 13:31:07
|
my $cn = $entry->get("cn"); for my $v (@$cn) { print "cn:$v\n"; } to get just the first value: my $v = $cn->[0]; you should read up on arrays in the Perl docs because they are used a lot. Mark On Wed, 23 Aug 2000 ms...@ma... wrote: > hi, > > how can i get the value of the attributes from the reference to array in an Entry object? > > thanks, > manuel. > > > _____________________________________________________________ > Global Virtual Desktop > Get your free Desktop at http://www.magicaldesk.com > > > |