如何使用 adldap php 从活动目录中获取所有用户显示名称记录?

How to get all user displayname record form active directory using adldap php?

我想使用 adldap 从活动目录中获取所有用户显示名称记录 php?

此代码可以获取单条记录

if ($adldap->authenticate($username, $password)){
  $result=$adldap->user()->infoCollection("$username", array("*"))->displayName;
  print_r($result);
}

但我想从活动目录中获取所有显示名称记录,我尝试了以下代码,但不起作用

if ($adldap->authenticate($username, $password)){
      $result=$adldap->user()->infoCollection("*")->displayName; //show all record
      print_r($result);
    }

有什么想法,非常感谢

您需要进行搜索以收集所有用户 -- 请参阅 https://github.com/adldap/adLDAP/blob/master/docs/SEARCH-FUNCTIONS.md for documentation. Depending on how many records are in your AD, you probably want to use a paged query. See https://github.com/adldap/adLDAP/blob/master/docs/SEARCH-FUNCTIONS.md#paginate 了解那里的信息。

获得结果集后,遍历结果集并获取每个用户的显示名称:

foreach($results as $result){
    echo $result['displayName'];
}