如何获取给定 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 "目标 DN 是:".$data;