Skip to content

Instantly share code, notes, and snippets.

@redknitin
Created October 5, 2015 06:39
Show Gist options
  • Select an option

  • Save redknitin/53810deed78ea23e0b61 to your computer and use it in GitHub Desktop.

Select an option

Save redknitin/53810deed78ea23e0b61 to your computer and use it in GitHub Desktop.
LDAP in PHP
<?php
require_once 'Net/LDAP2.php';
$cfg = array(
'binddn'=>'pokemon\nitin', //'cn=nitin,ou=users,dc=pokemon,dc=local',
'bindpw'=>'gorillacheese',
'basedn'=>'dc=pokemon,dc=local',
'host'=>'pokemon.local'
);
$ldap = Net_LDAP2::connect($cfg);
if (PEAR::isError($ldap)) {
die('Could not connect to LDAP-server: '.$ldap->getMessage());
} else {
echo 'Connect OK';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment