gpt4 book ai didi

php - 使用 ADLDAP 从 Active Directory 加载用户

转载 作者:行者123 更新时间:2023-12-03 02:44:00 25 4
gpt4 key购买 nike

我正在使用 ADLDAP 库 ( http://adldap.sourceforge.net ) 与 Active Directory 交互。我正在使用 PHP。我想从 Active Directory 获取所有用户并将它们保存到数组中。有什么办法可以做到这一点吗?

最佳答案

您可能想做类似的事情:

$adldap = new adLDAP();
$usernames = $adldap->user()->all();

$users = array();
foreach ($usernames as $username)
{
$userInfo = $adldap->user()->infoCollection($username);
$users[$username] = $userInfo;
}

all() 方法已被证实 here .

关于php - 使用 ADLDAP 从 Active Directory 加载用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9581693/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com