I'm using this to make an LDAP query;
$ldap = new \Zend\Ldap\Ldap($options);
$ldap->bind();
$result = $ldap->search('(objectclass=*)',
'dc=wr,dc=local',
\Zend\Ldap\Ldap::SEARCH_SCOPE_ONE);How would I then iterate over the results?
