简体   繁体   English

如何获取LDAP电话号码?

[英]How can I fetch LDAP phone number?

The code below gets me the ldap username and full name...I am a little new to LDAP so I was wondering how may I also get the user phone number? 下面的代码为我提供了ldap用户名和全名...我对LDAP有点陌生,所以我想知道如何获取用户电话号码?

What is it that I need to add to my code to make it echo out the phone number as well? 我需要添加到代码中以使其也呼出电话号码的是什么?

<?php

$x=1;
if($x==1)
{
    //LDAP stuff here.
    $username = "stuff";
    $password = "stuffhere";

    echo("Authenticating...");
    $ds = ldap_connect('ldap host');

        ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
    ldap_set_option($ds, LDAP_OPT_REFERRALS, 0);

    //Can't connect to LDAP.
    if( !ds )
    {
        echo "Error in contacting the LDAP server -- contact ";
        echo "technical services!  (Debug 1)";

        exit;
    }

    //Connection made -- bind anonymously and get dn for username.
    $bind = @ldap_bind($ds);

    //Check to make sure we're bound.
    if( !bind )
    {
        echo "Anonymous bind to LDAP FAILED.  Contact Tech Services! (Debug 2)";

        exit;
    }

    $search = ldap_search($ds, "rdn here", "uid=$username");

    //Make sure only ONE result was returned -- if not, they might've thrown a * into the username.  Bad user!
    if( ldap_count_entries($ds,$search) != 1 )
    {
        echo "Error processing username -- please try to login again. (Debug 3)";
        redirect(_WEBROOT_ . "/try1b.php");

        exit;
    }

    $info = ldap_get_entries($ds, $search);

    //Now, try to rebind with their full dn and password.
    $bind = @ldap_bind($ds, $info[0][dn], $password);
    if( !$bind || !isset($bind))
    {
        echo "Login failed -- please try again. (Debug 4)";
        redirect(_WEBROOT_ . "/try1b.php");

        exit;
    }

    //Now verify the previous search using their credentials.
    $search = ldap_search($ds, "rdn here", "uid=$username");

    $info = ldap_get_entries($ds, $search);
    if( $username == $info[0][uid][0] )
    {
echo $username;
     echo $info[0][cn][0]; 


        exit;
    }
    else
    {
        echo "Error. Access Denied";
        redirect(_WEBROOT_ . "/try1b.php");

        exit;
    }
    ldap_close($ds);
    exit;
}
?> 

RFC4519 gives telephoneNumber as the attribute for a phone number in the standard user schema. RFC4519给出telephoneNumber作为标准用户模式的电话号码的属性。 List this attribute in the requested attributes list in the search request. 在搜索请求的请求属性列表中列出此属性。 For more information about query a directory server, see "LDAP: Using ldapsearch" and "LDAP: Programming Practices" . 有关查询目录服务器的更多信息,请参见“ LDAP:使用ldapsearch”“ LDAP:编程实践”

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM