當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。