• Модуль: ldap
  • Путь к файлу: ~/bitrix/modules/ldap/classes/general/ldap.php
  • Класс: CLDAP
  • Вызов: CLDAP::getLastErrorDescription
protected function getLastErrorDescription()
{
	$result = '';

	if($this->conn)
	{
		$ldapError = ldap_error($this->conn);

		if($ldapError <> '')
			$result = "nldap_error: '".$ldapError."'nldap_errno: '".ldap_errno($this->conn)."'";
	}

	return $result;
}