This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Convert LDAP resulting array to clean entries array with attributes and values | |
* | |
* @param $resultArray | |
* @return array | |
*/ | |
public function convertLdapResult($resultArray) | |
{ | |
$entries = array(); | |
foreach ($resultArray as $resIdx => $resEntry) { |