(PHP 4, PHP 5, PHP 7)
ldap_mod_replace — Replace attribute values with new ones
$link_identifier
, string $dn
, array $entry
[, array $serverctrls
] )
Replaces one or more attributes from the specified dn.
It may also add or remove attributes.
link_identifierAn LDAP link identifier, returned by ldap_connect().
dnThe distinguished name of an LDAP entity.
entryAn associative array listing the attributes to replace. Sending an empty array as value will remove the attribute, while sending an attribute not existing yet on this entry will add it.
Returns TRUE on success or FALSE on failure.
Note: This function is binary-safe.