View convertLdapResult.php
/** | |
* 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) { |