PHP 开发者大会日本 2024

使用 PHP LDAP 调用

在您可以使用 LDAP 调用之前,您需要了解…

  • 您将使用的目录服务器的名称或地址

  • 服务器的“base 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"

添加备注

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top