本文整理汇总了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());
}
示例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;
}