ldap_bind

(PHP 4, PHP 5, PHP 7, PHP 8)

ldap_bind绑定 LDAP 目录

说明

ldap_bind(resource $link_identifier, string $bind_rdn = null, string $bind_password = null): bool

使用指定的 RDN 和密码绑定到 LDAP 目录。

参数

link_identifier

通过 ldap_connect() 连接之后返回的 LDAP 连接标识。

bind_rdn

bind_password

如果没有指定 bind_rdnbind_password ,将会以匿名身份绑定。

返回值

成功时返回 true, 或者在失败时返回 false

范例

示例 #1 使用 LDAP Bind

<?php

// using ldap bind
$ldaprdn = 'uname'; // ldap rdn or dn
$ldappass = 'password'; // associated password

// connect to ldap server
$ldapconn = ldap_connect("ldap.example.com")
or die(
"Could not connect to LDAP server.");

if (
$ldapconn) {

// binding to ldap server
$ldapbind = ldap_bind($ldapconn, $ldaprdn, $ldappass);

// verify binding
if ($ldapbind) {
echo
"LDAP bind successful...";
} else {
echo
"LDAP bind failed...";
}

}

?>

示例 #2 Using LDAP Bind Anonymously

<?php

//using ldap bind anonymously

// connect to ldap server
$ldapconn = ldap_connect("ldap.example.com")
or die(
"Could not connect to LDAP server.");

if (
$ldapconn) {

// binding anonymously
$ldapbind = ldap_bind($ldapconn);

if (
$ldapbind) {
echo
"LDAP bind anonymous successful...";
} else {
echo
"LDAP bind anonymous failed...";
}

}

?>

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top