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


PHP ConfService::setContextCharset方法代码示例

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


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

示例1: parseUrl

 protected function parseUrl($url, $forceLogin = false)
 {
     // URL MAY BE ajxp.ftp://username:password@host/path
     $urlParts = AJXP_Utils::safeParseUrl($url);
     $this->repositoryId = $urlParts["host"];
     $repository = ConfService::getRepositoryById($this->repositoryId);
     if ($repository == null) {
         throw new Exception("Cannot find repository for dynamic ftp authentification.");
     }
     $credentials = AJXP_Safe::tryLoadingCredentialsFromSources($urlParts, $repository);
     $this->user = $credentials["user"];
     $this->password = $credentials["password"];
     if ($this->user == "") {
         throw new AJXP_Exception("Cannot find user/pass for FTP access!");
     }
     if ($repository->getOption("DYNAMIC_FTP") == "TRUE" && isset($_SESSION["AJXP_DYNAMIC_FTP_DATA"])) {
         $data = $_SESSION["AJXP_DYNAMIC_FTP_DATA"];
         $this->host = $data["FTP_HOST"];
         $this->path = $data["PATH"];
         $this->secure = $data["FTP_SECURE"] == "TRUE" ? true : false;
         $this->port = $data["FTP_PORT"] != "" ? intval($data["FTP_PORT"]) : ($this->secure ? 22 : 21);
         $this->ftpActive = $data["FTP_DIRECT"] == "TRUE" ? true : false;
         $this->repoCharset = $data["CHARSET"];
     } else {
         $this->host = $repository->getOption("FTP_HOST");
         $this->path = $repository->getOption("PATH");
         $this->secure = $repository->getOption("FTP_SECURE") == "TRUE" ? true : false;
         $this->port = $repository->getOption("FTP_PORT") != "" ? intval($repository->getOption("FTP_PORT")) : ($this->secure ? 22 : 21);
         $this->ftpActive = $repository->getOption("FTP_DIRECT") == "TRUE" ? true : false;
         $this->repoCharset = $repository->getOption("CHARSET");
     }
     // Test Connexion and server features
     global $_SESSION;
     $cacheKey = $repository->getId() . "_ftpCharset";
     if (!isset($_SESSION[$cacheKey]) || !strlen($_SESSION[$cacheKey]) || $forceLogin) {
         $features = $this->getServerFeatures();
         $ctxCharset = ConfService::getContextCharset();
         if (empty($ctxCharset)) {
             ConfService::setContextCharset($features["charset"]);
             $_SESSION[$cacheKey] = $features["charset"];
         } else {
             $_SESSION[$cacheKey] = $ctxCharset;
         }
     }
     return $urlParts;
 }
开发者ID:thermalpaste,项目名称:pydio-core,代码行数:46,代码来源:class.ftpAccessWrapper.php


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