| Net-LDAPxs documentation | view source | Contained in the Net-LDAPxs distribution. |
Net::LDAPxs::Entry - An LDAP entry object
use Net::LDAPxs;
$ldap = Net::LDAPxs->new ( $host );
$msg = $ldap->search ( @search_args );
@entries = $msg->entries();
foreach my $entry (@entries) {
foreach my $attr ($entry->attributes()) {
foreach my $val ($entry->get_value($attr)) {
print "$attr, $val\n";
}
}
}
The Net::LDAPxs::Entry object represents a single entry in the directory. It is a container for attribute-value pairs.
Return a list of attributes in this entry
Get the DN of the entry.
Get the values for the attribute ATTR. In a list context returns
all values for the given attribute, or the empty list if the attribute
does not exist. In a scalar context returns the first value for the
attribute.
This document is based on the document of Net::LDAP::Entry
Pan Yu <xiaocong@vip.163.com>
Copyright (C) 2008-2009 by Pan Yu. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Net-LDAPxs documentation | view source | Contained in the Net-LDAPxs distribution. |