当前位置: 首页>>代码示例>>PHP>>正文


PHP Zend_Ldap_Dn::getRdn方法代码示例

本文整理汇总了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;
 }
开发者ID:yonetici,项目名称:pimcore-coreshop-demo,代码行数:58,代码来源:Node.php


注:本文中的Zend_Ldap_Dn::getRdn方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。