public function LdapQuery::errorMsg in Lightweight Directory Access Protocol (LDAP) 7
Same name and namespace in other branches
- 8.2 ldap_query/LdapQuery.class.php \LdapQuery::errorMsg()
- 7.2 ldap_query/LdapQuery.class.php \LdapQuery::errorMsg()
File
- ldap_query/
LdapQuery.class.php, line 153 - Defines server classes and related functions.
Class
- LdapQuery
- LDAP Server Class
Code
public function errorMsg($type = NULL) {
if ($type == 'ldap' && $this->connection) {
return ldap_err2str(ldap_errno($this->connection));
}
elseif ($type == NULL) {
return $this->_errorMsg;
}
else {
return NULL;
}
}