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


PHP Journal2Utils::getHostName方法代码示例

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


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

示例1: __construct

 public function __construct($registry)
 {
     $config = $registry->get('config');
     $currency = $registry->get('currency');
     $this->request = $registry->get('request');
     $this->store_id = $config->get('config_store_id');
     $this->language_id = $config->get('config_language_id');
     $this->currency_id = $currency->getCode();
     if (self::$mobile_detect->isMobile()) {
         if (self::$mobile_detect->isTablet()) {
             self::$device = 'tablet';
         } else {
             self::$device = 'mobile';
         }
     }
     $this->logged_in = $registry->get('customer')->isLogged() ? 1 : 0;
     $this->price = $config->get('config_customer_price') && $registry->get('customer')->isLogged() || !$config->get('config_customer_price') ? 'price' : 'noprice';
     $this->hostname = md5(Journal2Utils::getHostName());
 }
开发者ID:deepakdesai,项目名称:CressoyoWebApp,代码行数:19,代码来源:journal2_cache.php

示例2: getHash

 private function getHash($files, $ext, $language = '')
 {
     $hash = '';
     if (is_array($files)) {
         foreach ($files as $file) {
             $hash .= $file;
         }
     } else {
         $hash = $files;
     }
     $hash .= JOURNAL_VERSION;
     $hash .= Journal2Utils::getHostName();
     $hash .= $language;
     return md5($hash) . '.' . $ext;
 }
开发者ID:SwayWebStudio,项目名称:night.com,代码行数:15,代码来源:journal2_minifier.php


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