PHP code example of toshy62 / openldapobject
1. Go to this page and download the library: Download toshy62/openldapobject library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
toshy62 / openldapobject example snippets
namespace AppBundle\Controller;
use OpenLdapObject\LdapClient\Connection;
use OpenLdapObject\LdapClient\Client;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class DefaultController extends Controller
{
/**
* @Route("/example", name="example")
*/
public function exampleAction() {
$ldap = new Connection($this->container->getParameter('ldap_hostname'), 389);
$ldap->identify($this->container->getParameter('ldap_dn'), $this->container->getParameter('ldap_password'));
$client = $ldap->connect();
$client->setBaseDn($this->container->getParameter('ldap_base_dn'));
$query = "(&(objectclass=*)(sn=Hetru))";
$accounts = $client->search($query, array('*', 'memberof'), 0, 'ou=accounts');
dump($accounts);
...
}
}
...
...