LDAP_RENAME(3) 1 LDAP_RENAME(3)
ldap_rename - Modify the name of an entry
SYNOPSIS
bool ldap_rename (resource $link_identifier, string $dn, string $newrdn, string $newparent, bool $deleteoldrdn)
DESCRIPTION
The entry specified by $dn is renamed/moved.
PARAMETERS
o $link_identifier
- An LDAP link identifier, returned by ldap_connect(3).
o $dn
- The distinguished name of an LDAP entity.
o $newrdn
- The new RDN.
o $newparent
- The new parent/superior entry.
o $deleteoldrdn
- If TRUE the old RDN value(s) is removed, else the old RDN value(s) is retained as non-distinguished values of the entry.
RETURN VALUES
Returns TRUE on success or FALSE on failure.
NOTES
Note
This function currently only works with LDAPv3. You may have to use ldap_set_option(3) prior to binding to use LDAPv3. This func-
tion is only available when using OpenLDAP 2.x.x OR Netscape Directory SDK x.x.
SEE ALSO
ldap_modify(3).
PHP Documentation Group LDAP_RENAME(3)