See the following documents for more information on the attributes contained within the RootDSE for a given LDAP server.
Exemplo 508. Getting hands on the RootDSE
$options = array(/* ... */); $ldap = new Zend_Ldap($options); $rootdse = $ldap->getRootDse(); $serverType = $rootdse->getServerType();
Exemplo 509. Getting hands on the server schema
$options = array(/* ... */); $ldap = new Zend_Ldap($options); $schema = $ldap->getSchema(); $classes = $schema->getObjectClasses();
Schema browsing on ActiveDirectory servers
Due to restrictions on Microsoft ActiveDirectory servers regarding the number of entries returned by generic search routines and due to the structure of the ActiveDirectory schema repository, schema browsing is currently not available for Microsoft ActiveDirectory servers.