added function which returns the LDAP connection handle

This commit is contained in:
Roland Gruber 2003-03-14 15:26:53 +00:00
parent 528ed188b6
commit c0227e9aa2
1 changed files with 5 additions and 0 deletions

View File

@ -103,6 +103,11 @@ class Ldap{
ldap_close($this->server);
}
// returns the LDAP connection handle
function server() {
return $this->server;
}
}