当前位置: 首页>>代码示例>>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;未经允许,请勿转载。