20.7 Adressen über LDAP abfragen
Problem
Sie möchten einen LDAP-Server nach Adressinformationen abfragen.
Lösung
Verwenden Sie die LDAP-Erweiterung von PHP:
$ds = ldap_connect('ldap.example.com') or die($php_errormsg); ldap_bind($ds) or die($php_errormsg); $sr = ldap_search($ds, 'o=Example Inc., c=US', 'sn=*') or die($php_errormsg); $e = ldap_get_entries($ds, $sr) or die($php_errormsg); for ($i=0; $i < $e['count']; $i++) { echo $e[$i]['cn'][0] . ' (' . $e[$i]['mail'][0] . ')<br>'; } ldap_close($ds) or die($php_errormsg);
Diskussion
LDAP steht für Lightweight Directory Access Protocol. Ein LDAP-Server speichert Verzeichnis-Informationen, wie beispielsweise Namen und Adressen, und lässt Sie diese abfragen. In vielerlei Hinsicht ist das wie bei einer Datenbank, ...
Get PHP 5 Kochbuch, Third Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.