mangati/ldap

LDAP management and utils

v1.1.0 2016-08-25 20:06 UTC

This package is auto-updated.

Last update: 2024-04-16 01:34:55 UTC


README

LDAP management and utils for PHP

Known issues

If you get "Strong(er) authentication required" error, put this line before your script:

putenv('LDAPTLS_REQCERT=never');

And pass $startTls as TRUE:

public function __construct($host, $port, $user = null, $pass = null, $startTls = false)