tags:

views:

34

answers:

2

For now, I would like to know how we can retrieve user information from Active Directiory by using PHP Command. Can you give some example or any suggestion ?

+1  A: 

PHP has LDAP functions:
http://php.net/manual/en/book.ldap.php

There's also a library called adLDAP which was designed to work with AD:
http://adldap.sourceforge.net/

NullUserException
A: 

Afaik AD is accessed via LDAP, so you would need a library for this:

There is also http://phpad.sunyday.net/ and Google has a good deal of further results.

Gordon