Heim > Artikel > Backend-Entwicklung > ldap – So ändern Sie das Windows AD-Kontokennwort in PHP
Durch den folgenden Code kann ldap_bind die Authentifizierung erkennen, aber ich weiß nicht, wie ich das Passwort ändern soll;
$domain = 'sclivein.com';$ad = ldap_connect ( "192.168.1.100" ) oder die ( 'Verbindung zum LDAP-Server konnte nicht hergestellt werden.' );
ldap_set_option ( $ad, LDAP_OPT_PROTOCOL_VERSION, 3 );
ldap_set_option ( $ad, LDAP_OPT_REFERRALS, 0 );
@ldap_bind ( $ad, "{$user}@{$domain}", $password )
$domain = 'sclivein.com';
$ad = ldap_connect ( "192.168.1.100" ) oder die ( 'Verbindung zum LDAP-Server konnte nicht hergestellt werden.' );ldap_set_option ( $ad, LDAP_OPT_PROTOCOL_VERSION, 3 );
ldap_set_option ( $ad, LDAP_OPT_REFERRALS, 0 );
@ldap_bind ( $ad, "{$user}@{$domain}", $password )