我正在使用 Adldap 在 php 中验证登录但它给出错误:无法联系 LDAP 服务器。
<?php
require_once('src/adLDAP.php');
$adldap = new adLDAP();
$authUser = $adldap->user()->authenticate('AliNasiri', '******');
if ($authUser == true) {
echo "User authenticated successfully";
}
else {
echo $adldap->getLastError()."<br>";
echo "User authentication unsuccessful";
}?>