LDAP 函数
在线手册:中文 英文
PHP手册

ldap_close

(PHP 4, PHP 5)

ldap_close别名 ldap_unbind()

说明

此函数是该函数的别名: ldap_unbind().


LDAP 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: 别名 ldap_unbind

用户评论:

(20-Jul-2001 07:15)

<?php
$ds
=ldap_connect("localhost");  // assuming the LDAP server is on this host

if ($ds) {
   
$r=ldap_bind($ds,"cn=root, o=My Company, c=US", "secret");
   
$info["cn"]="Roberto Celestino";
   
$info["sn"]="Roberto";
   
$info["mail"]="rcelestino@here.and.now";
   
$info["objectclass"]="person";

   
// add data to directory
   
$r=ldap_add($ds, "cn=Celestino Roberto, o=Mi Compania, c=US", $info);
   
//Close the link apointed by the identified $ds (get with ldap_connect)
   
ldap_close($ds);

}
?>