如何获取给定 samaccountname 的 DN
/*连接部分*/
$ldap_conn = ldap_connect($hostname, $port);
$bind = ldap_bind($ldap_conn, $username, $password);
/*连接部分*/
$samaccountname = john.doe;
$filter="(samaccountname=$samaccountname)";
$dn="OU=PEOPLE, DC=example, DC=com"; //即使看起来很明显,我在这里也注意到 dn 只是一个例子,您必须提供您自己的 OU 和 DC
$res = ldap_search($ldap_conn, $dn, $filter);
$first = ldap_first_entry($ldap_conn, $res);
$data = ldap_get_dn($ldap_conn, $first);
echo "The desired DN is: ".$data;