當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Date::__construct方法代碼示例

本文整理匯總了PHP中Date::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP Date::__construct方法的具體用法?PHP Date::__construct怎麽用?PHP Date::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Date的用法示例。


在下文中一共展示了Date::__construct方法的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 public function __construct($dateTime, DateTimeZone $zone = null)
 {
     parent::__construct($dateTime);
     if ($zone) {
         $this->dateTime->setTimezone($zone);
     }
 }
開發者ID:onphp-framework,項目名稱:onphp-framework,代碼行數:7,代碼來源:Timestamp.class.php

示例2: __construct

 public function __construct($timestamp)
 {
     $month_day = date('j', $timestamp);
     $month = date('n', $timestamp);
     $year = date('Y', $timestamp);
     $this->timestamp = $timestamp;
     parent::__construct($month_day, $month, $year);
 }
開發者ID:hussainweb,項目名稱:date-converter,代碼行數:8,代碼來源:NativeDate.php

示例3: __construct

 public function __construct($datetime = null, $tz = '')
 {
     parent::__construct($datetime);
     if ($tz == '') {
         $this->setTZ(w2PgetConfig('system_timezone', 'UTC'));
     } else {
         $this->setTZ($tz);
     }
 }
開發者ID:illuminate3,項目名稱:web2project,代碼行數:9,代碼來源:Date.class.php

示例4: __construct

 /**
  * @param \Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate
  */
 public function __construct(\Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate)
 {
     parent::__construct($localeDate);
     $this->_localToNormalFilter = new \Zend_Filter_LocalizedToNormalized(['date_format' => $this->_localeDate->getDateTimeFormat(\IntlDateFormatter::SHORT)]);
     $this->_normalToLocalFilter = new \Zend_Filter_NormalizedToLocalized(['date_format' => \Magento\Framework\Stdlib\DateTime::DATETIME_INTERNAL_FORMAT]);
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:9,代碼來源:DateTime.php

示例5: __construct

 /**
  * Class constructor method
  *
  * @access public
  * 
  * @return void
  */
 public function __construct()
 {
     parent::__construct(current_time('timestamp'));
 }
開發者ID:str33thack3r,項目名稱:wp01,代碼行數:11,代碼來源:class-bangla-date.php

示例6: __construct

 public function __construct(array $attributes = [])
 {
     parent::__construct($attributes + ['size' => 24, 'class' => 'datetime']);
 }
開發者ID:brickrouge,項目名稱:brickrouge,代碼行數:4,代碼來源:DateTime.php

示例7:

 function __construct($name)
 {
     user_error('Datetime is deprecated. Use SSDatetime instead.', E_USER_NOTICE);
     parent::__construct($name);
 }
開發者ID:ramziammar,項目名稱:websites,代碼行數:5,代碼來源:Datetime.php

示例8: __construct

 public function __construct($data = null)
 {
     parent::__construct($data);
 }
開發者ID:ctiborv,項目名稱:spitzen-wein.ch,代碼行數:4,代碼來源:date_time.class.php

示例9:

 function __construct($time = null, $default_format = 'Y-m-d H:i:s')
 {
     parent::__construct($time, $default_format);
 }
開發者ID:ateliee,項目名稱:pmp,代碼行數:4,代碼來源:dateTime.php

示例10: __construct

 /**
  * Constructor
  *
  * @param $name
  * @param string $label
  * @param array $attr
  */
 public function __construct($name, $label = '', $from = null, $to = null, $formatDisplay = null, $formatStore = null, $attr = [])
 {
     parent::__construct($name, $label, $formatDisplay, $formatStore, $attr);
     $this->setTo(is_null($to) ? $name . '_to' : $to);
     $this->setFrom(is_null($from) ? $name . '_from' : $from);
 }
開發者ID:frenchfrogs,項目名稱:framework,代碼行數:13,代碼來源:DateRange.php

示例11:

 function __construct($name)
 {
     // Debug::show( 'Created SSDatetime: ' . $name );
     parent::__construct($name);
 }
開發者ID:ramziammar,項目名稱:websites,代碼行數:5,代碼來源:SSDatetime.php


注:本文中的Date::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。