本文整理匯總了PHP中Ldap::getEntry方法的典型用法代碼示例。如果您正苦於以下問題:PHP Ldap::getEntry方法的具體用法?PHP Ldap::getEntry怎麽用?PHP Ldap::getEntry使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Ldap
的用法示例。
在下文中一共展示了Ldap::getEntry方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: fromLdap
/**
* Factory method to create an attached Zend_Ldap_Node for a given DN.
*
* @param string|array|\Zend\Ldap\Dn $dn
* @param \Zend\Ldap\Ldap $ldap
* @return \Zend\Ldap\Node|null
* @throws \Zend\Ldap\Exception
*/
public static function fromLdap($dn, Ldap $ldap)
{
if (is_string($dn) || is_array($dn)) {
$dn = Dn::factory($dn);
} else {
if ($dn instanceof Dn) {
$dn = clone $dn;
} else {
throw new Exception(null, '$dn is of a wrong data type.');
}
}
$data = $ldap->getEntry($dn, array('*', '+'), true);
if ($data === null) {
return null;
}
$entry = new self($dn, $data, true, $ldap);
return $entry;
}