ldap_rename

(PHP 4 >= 4.0.5, PHP 5, PHP 7)

ldap_renameИзменить имя записи

Описание

bool ldap_rename ( resource $link_identifier , string $dn , string $newrdn , string $newparent , bool $deleteoldrdn )

Переименование/перемещение записи, определённой dn.

Список параметров

link_identifier

Идентификатор ссылки LDAP, возвращенный ldap_connect().

dn

Отличительное имя LDAP объекта.

newrdn

Новое RDN.

newparent

Новая родительская/превосходящая запись.

deleteoldrdn

Если TRUE, старые значения RDN удаляются, иначе старые значения RDN сохраняются как неуникальные значения записи.

Возвращаемые значения

Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.

Примечания

Замечание:

Эта функция в настоящее время работает только с LDAPv3. Возможно, вам придется использовать ldap_set_option() перед привязкой, используя LDAPv3. Эта функция доступна только при использовании OpenLDAP 2.xx или Netscape Directory SDK x.x.

Смотрите также

Коментарии

Автор:
To get this function working make sure that the value for $newrdn is relative.
2002-04-04 06:10:55
http://php5.kiev.ua/manual/ru/function.ldap-rename.html
Works also with eDirectory 8 (NW6).

If you are moving a user, remember that you also change the uid!
2002-10-16 11:29:45
http://php5.kiev.ua/manual/ru/function.ldap-rename.html
Автор:
ldap_rename can only move leaf nodes of the directory tree. If your ldap entry has any child entries, then ldap_rename is not the tool that you need. We needed to change usernames, but that alters the dn. ldap_rename wouldn't work because each of our user ldap entries has a couple associated child entries. We had to write a function to recursively copy the subtree to the new location, and then delete the original version. Here is the basic algorithm:

function recursive_move($old_username, $new_username)
    ldap_search on the old username to get the correct entry
    ldap_get_attributes to get an array of values from the ldap entry
    foreach attribute in array, replace occurences of $old_username with $new_username
    ldap_add the attribute array into the new location
    ldap_modify any additional attributes
    ldap_list each child entry
    call function recursive_move on each child
    ldap_delete current entry
    return
2003-11-15 20:37:11
http://php5.kiev.ua/manual/ru/function.ldap-rename.html
Since this function isn't documented to well I thought I'd help out those trying to get this to work.

<?php
// $dn is the full DN of the entry you wish to move
$dn 'cn=user1,ou=group1,dc=mydomain';
/*
    note that $newRdn IS NOT a full DN, it is only the start
    I've NOT gotten it to change attributes for the RDN
    but that could just be my schema
*/
$newRdn 'cn=user2';
// $newparent IS the full DN to the NEW parent DN that you want to move/rename to
$newParent 'ou=group2,dc=mydomain';
ldap_rename($link$dn$newRdn$newParenttrue);
?>

Like I said above I haven't been able to get it to rename to a DIFFERENT attribute so deleteoldrdn has no affect on it.
2004-06-30 05:41:58
http://php5.kiev.ua/manual/ru/function.ldap-rename.html
If you are using Sun Directory Server 5.2, please note that you can't use ldap_rename to move an entry. According to Sun's own documentation: "[...] At this point in time, Directory Server does not support the ability to use the modify DN operation to move an entry from one location in the directory tree to another location." (http://docs.sun.com/source/817-6707/resultcodes.html)
The problem is that php does not return any error and the operation seems to complete succesfully, except for the fact that nothing really happens. If you check the server logs, there will be an "error 53" entry (server is unwilling to perform). 
hope this saves someone's couple of hours nasty searching...
2004-10-18 05:52:29
http://php5.kiev.ua/manual/ru/function.ldap-rename.html
Contrary to Richard Esplin's statement, this *is* the correct function to use for renaming subtrees and moving entries from one place in the tree to another. Just that most LDAP server implementations don't support moving non-leaf entries.

E.g. In OpenLDAP, moving a non-leaf entry is only supported when using the back-hdb database backend. SunOne only has one database backend, and it apparently doesn't handle this type of operation.
2005-10-06 07:49:53
http://php5.kiev.ua/manual/ru/function.ldap-rename.html
Though clearly mentioned, the following had me in spin for a good 10 minutes.

Ensure: 

if (!ldap_set_option($conn, LDAP_OPT_PROTOCOL_VERSION, 3)) {
   // do something horrible
}

has been set _before_ you actually bind :)
2007-06-15 10:26:42
http://php5.kiev.ua/manual/ru/function.ldap-rename.html
Автор:
Here's some clarification about the parameters when renaming a container in Novell eDirectory:
- $new_rdn is in format "ou=new container name"
- newparent parameter is NULL - because we're renaming and not moving
- deleteoldrdn parameter if TRUE then old value of OU attribute is stored as a secondary/further value of LDAP OU attribute. Novell ConsoleOne shows it as 'Other Name' attribute.

$full_old_dn= "ou=Cuckoo,ou=London,ou=UK,ou=Europe,o=Happy";
$new_rdn= "ou=Cuckoo Group";
   
ldap_rename( $conn, $full_old_dn, $new_rdn, NULL, TRUE);
2008-04-09 05:51:04
http://php5.kiev.ua/manual/ru/function.ldap-rename.html
A thing to remember when using ldap_rename or any other method that is not doing just renaming but creating a new parent and moving children is that you'll loose your original entryUUID!
We wanted to do a local DB mapping for LDAP->DB user groups thinking that it would be the most stable resource identifier only to find out we were absolutely wrong.
2014-09-12 00:20:42
http://php5.kiev.ua/manual/ru/function.ldap-rename.html

    Поддержать сайт на родительском проекте КГБ