<?php
$ds = ldap_connect("localhost"); // 假设 LDAP 服务器在此主机上
if ($ds) {
// 使用适当的 dn 绑定以提供更新访问权限
$bind = ldap_bind($ds, "cn=root, o=My Company, c=US", "secret");
if (!$bind) {
echo "无法绑定到 LDAP 服务器";
exit;
}
// 调用 WHOAMI EXOP
$r = ldap_exop($ds, LDAP_EXOP_WHO_AM_I);
// 解析结果对象
ldap_parse_exop($ds, $r, $retdata);
// 输出: string(31) "dn:cn=root, o=My Company, c=US"
var_dump($retdata);
// 使用 $response_data 参数执行相同操作
$success = ldap_exop($ds, LDAP_EXOP_WHO_AM_I, NULL, NULL, $retdata, $retoid);
if ($success) {
var_dump($retdata);
}
ldap_close($ds);
} else {
echo "无法连接到 LDAP 服务器";
}
?>