php擷取ad域使用者:PHP 讀取 AD 使用者

來源:互聯網
上載者:User
 
  1. <?php 
  2. //phpinfo(); 
  3. $host = "******:389"; 
  4. $user = "**@**"; 
  5. $pswd = "*****"; 
  6. $ad = ldap_connect($host) or die( "Could not connect!" ); 
  7. if($ad){ 
  8. //設定參數 
  9. ldap_set_option ( $ad, LDAP_OPT_PROTOCOL_VERSION, 3 ); 
  10. ldap_set_option ( $ad, LDAP_OPT_REFERRALS, 0 ); 
  11. // bool ldap_bind ( resource $link_identifier [, string $bind_rdn = NULL [, string $bind_password = NULL ]] ) 
  12. $bd = ldap_bind($ad, $user, $pswd) or die ("Could not bind"); 
  13. echo "ldap_bind success"; 
  14. //指定需要擷取的使用者屬性 
  15. $attrs = array("displayname","cn"); 
  16. //指定需查詢的使用者範圍 
  17. $filter = "(objectclass=*)"; 
  18. //ldap_search ( resource $link_identifier , string $base_dn , string $filter [, array $attributes [, int $attrsonly [, int $sizelimit [, int $timelimit [, int $deref ]]]]] ) 
  19. $search = ldap_search($ad, 'DC=**,DC=**,DC=**', $filter, $attrs,0,0,0) or die ("ldap search failed"); 
  20. $entries = ldap_get_entries($ad, $search); 
  21. if ($entries["count"] > 0) { 
  22. echo '返回記錄數:'.$entries["count"]; 
  23. for ($i=0; $i<$entries["count"]; $i++) { 
  24. //所要擷取的欄位,都必須小寫 
  25. if(isset($entries[$i]["displayname"])){ 
  26. echo "<p>displayname: ".$entries[$i]["displayname"][0]."<br />";//使用者名稱 
  27. if(isset($entries[$i]["cn"][0])){ 
  28. echo "cn: ".$entries[$i]["cn"][0]."<br />";//使用者名稱字 
  29. } else { 
  30. echo "<p>No results found!</p>"; 
  31. }else{ 
  32. echo "Unable to connect to AD server"; 
  33. ?>  
本文連結http://www.cxybl.com/html/wlbc/Php/20130319/37245.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.