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


PHP TimezoneInterface::getConfigTimezone方法代码示例

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


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

示例1: setValue

 /**
  * Set date value
  *
  * @param mixed $value
  * @return $this
  */
 public function setValue($value)
 {
     if (empty($value)) {
         $this->_value = '';
         return $this;
     }
     if ($value instanceof \DateTimeInterface) {
         $this->_value = $value;
         return $this;
     }
     if (preg_match('/^[0-9]+$/', $value)) {
         $this->_value = (new \DateTime())->setTimestamp($this->_toTimestamp($value));
         return $this;
     }
     try {
         $this->_value = new \DateTime($value, new \DateTimeZone($this->localeDate->getConfigTimezone()));
     } catch (\Exception $e) {
         $this->_value = '';
     }
     return $this;
 }
开发者ID:IlyaGluschenko,项目名称:test001,代码行数:27,代码来源:Date.php

示例2: __construct

 /**
  * @param \Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate
  */
 public function __construct(\Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate)
 {
     $this->_localeDate = $localeDate;
     $this->_offset = $this->calculateOffset($this->_localeDate->getConfigTimezone());
 }
开发者ID:Mohitsahu123,项目名称:mtf,代码行数:8,代码来源:DateTime.php

示例3: getCreatedAtFormatted

 /**
  * Get formatted order created date in store timezone
  *
  * @param   string $format date format type (short|medium|long|full)
  * @return  string
  */
 public function getCreatedAtFormatted($format)
 {
     return $this->timezone->formatDateTime(new \DateTime($this->getCreatedAt()), $format, $format, null, $this->timezone->getConfigTimezone('store', $this->getStore()));
 }
开发者ID:kidaa30,项目名称:magento2-platformsh,代码行数:10,代码来源:Order.php

示例4: areTimesDifferentDays

 /**
  * Check whether timestamps are from different days
  *
  * @param $timeA
  * @param $timeB
  * @param $storeId
  * @return bool
  */
 protected function areTimesDifferentDays($timeA, $timeB, $storeId)
 {
     if (!$timeA || !$timeB) {
         return true;
     }
     $timezone = $this->localeDate->getConfigTimezone(null, $storeId);
     $dateA = new \DateTime($timeA, new \DateTimeZone($this->localeDate->getDefaultTimezone()));
     $dateA->setTimezone(new \DateTimeZone($timezone));
     $dateB = new \DateTime($timeB, new \DateTimeZone($this->localeDate->getDefaultTimezone()));
     $dateB->setTimezone(new \DateTimeZone($timezone));
     return $dateA->format('Y-m-d') != $dateB->format('Y-m-d');
 }
开发者ID:classyllama,项目名称:ClassyLlama_AvaTax,代码行数:20,代码来源:Tax.php


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