本文整理汇总了PHP中Zend_Ldap_Dn::getRdn方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Ldap_Dn::getRdn方法的具体用法?PHP Zend_Ldap_Dn::getRdn怎么用?PHP Zend_Ldap_Dn::getRdn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Ldap_Dn
的用法示例。
在下文中一共展示了Zend_Ldap_Dn::getRdn方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: update
/**
* Sends all pending changes to the LDAP server
*
* @param Zend_Ldap $ldap
* @return Zend_Ldap_Node Provides a fluent interface
* @throws Zend_Ldap_Exception
*/
public function update(Zend_Ldap $ldap = null)
{
if ($ldap !== null) {
$this->attachLdap($ldap);
}
$ldap = $this->getLdap();
if (!$ldap instanceof Zend_Ldap) {
/**
* @see Zend_Ldap_Exception
*/
// require_once 'Zend/Ldap/Exception.php';
throw new Zend_Ldap_Exception(null, 'No LDAP connection available');
}
if ($this->willBeDeleted()) {
if ($ldap->exists($this->_dn)) {
$this->_preDelete();
$ldap->delete($this->_dn);
$this->_postDelete();
}
return $this;
}
if ($this->isNew()) {
$this->_preAdd();
$data = $this->getData();
$ldap->add($this->_getDn(), $data);
$this->_loadData($data, true);
$this->_postAdd();
return $this;
}
$changedData = $this->getChangedData();
if ($this->willBeMoved()) {
$this->_preRename();
$recursive = $this->hasChildren();
$ldap->rename($this->_dn, $this->_newDn, $recursive, false);
foreach ($this->_newDn->getRdn() as $key => $value) {
if (array_key_exists($key, $changedData)) {
unset($changedData[$key]);
}
}
$this->_dn = $this->_newDn;
$this->_newDn = null;
$this->_postRename();
}
if (count($changedData) > 0) {
$this->_preUpdate();
$ldap->update($this->_getDn(), $changedData);
$this->_postUpdate();
}
$this->_originalData = $this->_currentData;
return $this;
}