ldap_search()操作错误

时间:2017-06-19 08:20:10

标签: php active-directory ldap

我已经查看过很多关于此问题的其他问题,但无法找到解决我错误的方法。

我使用的代码是:

ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, 7);
$ldapconn = ldap_connect('[HOST]', 389);
ldap_set_option($ldapconn, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($ldapconn, LDAP_OPT_REFERRALS, 0);
ldap_bind($ldapconn, $username, $password);

$authUser = $adldap->user()->authenticate($username, $password);
if ($authUser == true) {
    echo "jep";
    echo "<br />";

    $basedn     =   "DC=lab,DC=kuhlmann-its,DC=local";
    $classname  =   "TAI2";
    $filter     =   "(memberOf=OU=" . $classname . ",OU=Accounts,OU=BBS_Students,OU=BBS,OU=EDUNET,DC=lab,DC=kuhlmann-its,DC=local)";
    $attributes =   array("cn");
    $search     =   ldap_search($ldapconn, $basedn, $filter, $attributes);
    $info       =   ldap_get_entries($ldapconn, $search);   

这是我第一次使用LDAP和Active Directory,但我不知道所有功能的工作原理。我想知道为什么我的ldap_search()无效。

提前致谢。

0 个答案:

没有答案