How to retrieve the LDAP attribute "pwdLastSet" from Novel Console One using PHP

1.5k Views Asked by At

I'm working on a PHP web based application which reads user information(username,office,email,telephone etc) on Novel Console One via Ldap search. i now need it to show when will the password expire for each user search. Your assistance is highly appriciated.

1

There are 1 best solutions below

1
On

FINALLY GOT IT!!

$ds=ldap_connect("..*.*"); // must be a valid LDAP server! $person= "username";

$dn = "o=DOMAIN"; $filter="(|(sn=$person)(givenname=$person)(telephonenumber=*$person) (cn=$person))"; $justthese = array("ou", "sn", "givenname", "mail", "cn", "fullname", "telephonenumber", "title", "initials", "l", "manager");

$sr=ldap_search($ds, $dn, $filter, $justthese); $info = ldap_get_entries($ds, $sr);

$dn2=$info[0]["dn"]; $attributes = array();

$result = ldap_search($ds, $dn2, $filter, $attributes) or die("Search failed!");

$entries = ldap_get_entries($ds, $result);

echo $entries[0]['passwordexpirationtime'][0]."
";//PASS EXPIERY DATE