ldap_unbind

(PHP 4, PHP 5)

ldap_unbindUnbind from LDAP directory

說明

bool ldap_unbind ( resource $link_identifier )

Unbinds from the LDAP directory.

參數

link_identifier

An LDAP link identifier, returned by ldap_connect().

回傳值

如果成功則回傳 TRUE,失敗則回傳 FALSE

參見

add a note add a note

User Contributed Notes 1 note

up
25
kmenard at wpi dot edu
22 years ago
ldap_unbind kills the link descriptor.  So, if you want to rebind as another user, just bind again; don't unbind.  Otherwise, you'll have to open up a new connection.
To Top