daverandom/ldapi

Simple object oriented wrapper around ext/ldap

v1.0.3 2015-06-08 16:11 UTC

This package is auto-updated.

Last update: 2024-03-25 06:36:55 UTC


README

A simple object oriented wrapper around PHP's LDAP extension. No frills, just a slightly cleaner API for use in object oriented applications.

Requirements

  • PHP 5.4.0 or higher
  • ext/ldap

Installation

Preferably via Composer.

Example usage

<?php

$link = new LDAPi\Directory;

try {
    $link->connect('127.0.0.1', 389);
    $link->bind('Manager', 'managerpassword');

    $result = $link->search('cn=Users', 'objectClass=User', ['cn']);

    $entry = $result->firstEntry();
    do {
        print_r($entry->getAttributes());
    } while($entry = $entry->nextEntry());
} catch(LDAPi\DirectoryOperationFailureException $e) {
    exit('An error occurred: ' . $e->getMessage());
}