LDAP-Series-一-Chapter-3 - PHP-LDAP

WBOY
Freigeben: 2016-06-13 10:37:46
Original
708 Leute haben es durchsucht

LDAP-Series-1-Chapter-3 - PHP-LDAP

If you want to use PHP with ldap. You have to add the extension lib.(ldap.so)

Go to the install file of PHP.

$ cd /opt/php-5.4.5/ext/ldap/$ /usr/local/bin/phpize$ ./configure --with-php-config=/usr/local/bin/php-config --with-ldap=/usr/local/openldap$ make$ make install$ cd /usr/local/lib$ vi php.ini (<strong>extension-dir=/usr/local/lib extension=php_ldap.so</strong>)$ cp /usr/local/lib/php/ext/..../ldap.so /usr/local/lib/php_ldap.so
Nach dem Login kopieren
You can change the path as you like.

$ php -v
Nach dem Login kopieren
Check if any error exist. (Until now, my work place`s php cannot load ldap.so)

PHP Test file.

<?phpclass m_ldap{        private $ldapHost = "127.0.0.1";        private $ldapPort = 389;        private $ds;        function m_ldap_con(){                $this->ds = ldap_connect($this->ldapHost,$this->ldapPort) or die("Could not connect to $this->ldapHost");                return true;        }        function m_ldap_bind($dn,$psw){                ldap_set_option($this->ds, LDAP_OPT_PROTOCOL_VERSION, 3);                if($this->ds){                        $r = ldap_bind($this->ds,$dn,$psw) or die("Could not bind to $dn");                        if($r){                                return true;                        }else{                                return false;                        }                }else{                        return false;                }        }        function m_ldap_add($dn,$info){                $r=ldap_add($this->ds,$dn,$info);                if($r){                        return true;                }else{                        return false;                }        }        function m_ldap_modify($dn,$info){                $r=ldap_modify($this->ds,$dn,$info);                if($r){                        return true;                }else{                        return false;                }        }        function m_ldap_search($dn,$filter){                $ldapSearch = ldap_search($this->ds,$dn,$filter);                $ldapInfo = ldap_get_entries($this->ds,$ldapSearch);                return $ldapInfo;        }}?>
Nach dem Login kopieren
ldap_set_option($this->ds, LDAP_OPT_PROTOCOL_VERSION, 3); //Make the ds to use PROTOCOL VERSION 3, Otherwise, there will be an error about PROTOCOL.

<?php require_once("m_ldap.php");        $mdap=new m_ldap();        $mdap->m_ldap_con();        $dn = "cn=root,ou=SystemAdmin,dc=xxx,dc=org";        $psw= "xxxxxx";        $mdap->m_ldap_bind($dn,$psw) or die("cannot bind");                $sdn="ou=people,ou=iWeb,dc=weiwejia,dc=org";        $filter="(uid=*)";        $res=$mdap->m_ldap_search($sdn,$filter);        foreach( $res[0]["cn"] as $key=>$val){                print $key."\n";                print $val."\n";        }?>
Nach dem Login kopieren
If everything has been ok, it will works now. (Need ACL support, introduce next chapter.)




Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!