At least with OpenLDAP 1.2.x
to remove an attribute regardless of it's value you have to assign:
$attrs["AttributeName"]=array();
after ldap_mod_del($ds,$dn,$attrs)
all occurences of AttributeName will be removed
At least with OpenLDAP 1.2.x
to remove an attribute regardless of it's value you have to assign:
$attrs["AttributeName"]=array();
after ldap_mod_del($ds,$dn,$attrs)
all occurences of AttributeName will be removed