0
我需要通過ldap查詢從Active Directory獲取一些用戶屬性。 我使用這個代碼:帶有嵌套組的PHP Ldap配置文件用戶
$attributes=array("cn","sAMAccountName","sn","givenname","memberof","mail","telephonenumber","mobile","useraccountcontrol","department");
$filter = "(&(objectClass=user)(sAMAccountName=".$username."))";
$result = ldap_search($ldaphandler, $domain, $filter, $attributes);
我需要的所有嵌套組,但與此查詢我只得到了第一級別小組(成員字段)。但是,例如,如果一個用戶是InnerGroup的成員,並且InnerGroup是OuterGroup的成員,我想要同時獲得這兩個組(InnerGroup和OuterGroup)。它可能嗎?
謝謝。