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


PHP elFinder::sessionDataDecode方法代码示例

本文整理汇总了PHP中elFinder::sessionDataDecode方法的典型用法代码示例。如果您正苦于以下问题:PHP elFinder::sessionDataDecode方法的具体用法?PHP elFinder::sessionDataDecode怎么用?PHP elFinder::sessionDataDecode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在elFinder的用法示例。


在下文中一共展示了elFinder::sessionDataDecode方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: stat

 /**
  * Return fileinfo 
  *
  * @param  string  $path  file cache
  * @return array
  * @author Dmitry (dio) Levashov
  **/
 protected function stat($path)
 {
     if ($path === false || is_null($path)) {
         return false;
     }
     $is_root = $path == $this->root;
     if ($is_root) {
         $rootKey = md5($path);
         if (!isset($this->sessionCache['rootstat'])) {
             $this->sessionCache['rootstat'] = array();
         }
         if (!$this->isMyReload()) {
             // need $path as key for netmount/netunmount
             if (isset($this->sessionCache['rootstat'][$rootKey])) {
                 if ($ret = elFinder::sessionDataDecode($this->sessionCache['rootstat'][$rootKey], 'array')) {
                     return $ret;
                 }
             }
         }
     }
     $ret = isset($this->cache[$path]) ? $this->cache[$path] : $this->updateCache($path, $this->convEncOut($this->_stat($this->convEncIn($path))));
     if ($is_root) {
         $this->sessionRestart();
         $this->sessionCache['rootstat'][$rootKey] = elFinder::sessionDataEncode($ret);
         elFinder::sessionWrite();
     }
     return $ret;
 }
开发者ID:Wubbleyou,项目名称:yii2-elfinder,代码行数:35,代码来源:elFinderVolumeDriver.class.php

示例2: getNetVolumes

 /**
  * Return network volumes config.
  *
  * @return array
  * @author Dmitry (dio) Levashov
  */
 protected function getNetVolumes()
 {
     if (isset($_SESSION[$this->netVolumesSessionKey])) {
         if ($data = elFinder::sessionDataDecode($_SESSION[$this->netVolumesSessionKey], 'array')) {
             return $data;
         }
     }
     return array();
 }
开发者ID:oblagiolabs,项目名称:core,代码行数:15,代码来源:elFinder.class.php

示例3: stat

 /**
  * Return fileinfo
  *
  * @param  string  $path  file cache
  * @return array
  * @author Dmitry (dio) Levashov
  **/
 protected function stat($path)
 {
     if ($path === false || is_null($path)) {
         return false;
     }
     $is_root = $path === $this->root;
     if ($is_root) {
         $rootKey = md5($path);
         if (!isset($this->sessionCache['rootstat'])) {
             $this->sessionCache['rootstat'] = array();
         }
         if (empty($this->ARGS['reload']) || empty($this->ARGS['target']) || strpos($this->ARGS['target'], $this->id) !== 0) {
             // need $path as key for netmount/netunmount
             if (isset($this->sessionCache['rootstat'][$rootKey])) {
                 if ($ret = elFinder::sessionDataDecode($this->sessionCache['rootstat'][$rootKey], 'array')) {
                     return $ret;
                 }
             }
         }
     }
     $ret = isset($this->cache[$path]) ? $this->cache[$path] : $this->updateCache($path, $this->convEncOut($this->_stat($this->convEncIn($path))));
     if ($is_root) {
         $this->sessionCache['rootstat'][$rootKey] = elFinder::sessionDataEncode($ret);
     }
     return $ret;
 }
开发者ID:huangciyin,项目名称:pH7-Social-Dating-CMS,代码行数:33,代码来源:elFinderVolumeDriver.class.php


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