在使用 LDAP 调用之前,您需要知道...
您将使用的目录服务器的名称或地址
服务器的“基本 DN”(服务器上保存的目录的一部分,可能是“o=My Company,c=US”)
您是否需要密码才能访问服务器(许多服务器将为“匿名绑定”提供读取访问权限,但需要密码才能执行其他操作)
在应用程序中,您通常执行的 LDAP 调用序列将遵循此模式
ldap_connect() // establish connection to server | ldap_bind() // anonymous or authenticated "login" | do something like search or update the directory and display the results | ldap_close() // "logout"