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


PHP QDateTime::IsNull方法代码示例

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


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

示例1: testIncompleteDates

 public function testIncompleteDates()
 {
     $obj1 = new QDateTime("Feb 12");
     $this->assertFalse($obj1->IsNull());
     $this->assertFalse($obj1->IsDateNull());
     $this->assertTrue($obj1->IsTimeNull());
     $obj2 = new QDateTime("March 2003");
     $this->assertFalse($obj2->IsNull());
     $this->assertFalse($obj2->IsDateNull());
     $this->assertTrue($obj2->IsTimeNull());
 }
开发者ID:tomVertuoz,项目名称:framework,代码行数:11,代码来源:QDateTimeTests.php

示例2: __set

 public function __set($strName, $mixValue)
 {
     switch ($strName) {
         case 'MaxDate':
         case 'Maximum':
             try {
                 if (is_string($mixValue)) {
                     $mixValue = new QDateTime($mixValue);
                 }
                 parent::__set('MaxDate', QType::Cast($mixValue, QType::DateTime));
             } catch (QInvalidCastException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
             break;
         case 'MinDate':
         case 'Minimum':
             try {
                 if (is_string($mixValue)) {
                     $mixValue = new QDateTime($mixValue);
                 }
                 parent::__set('MinDate', QType::Cast($mixValue, QType::DateTime));
             } catch (QInvalidCastException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
             break;
         case 'DateTime':
             try {
                 $this->dttDateTime = QType::Cast($mixValue, QType::DateTime);
                 if ($this->dttDateTime && $this->dttDateTime->IsNull()) {
                     $this->dttDateTime = null;
                     $this->blnModified = true;
                 }
                 if (!$this->dttDateTime || !$this->strDateTimeFormat) {
                     parent::__set('Text', '');
                 } else {
                     parent::__set('Text', $this->dttDateTime->qFormat($this->strDateTimeFormat));
                 }
             } catch (QInvalidCastException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
             break;
         case 'JqDateFormat':
             try {
                 parent::__set($strName, $mixValue);
                 $this->strDateTimeFormat = QCalendar::qcFrmt($this->JqDateFormat);
                 // trigger an update to reformat the text with the new format
                 $this->DateTime = $this->dttDateTime;
             } catch (QInvalidCastException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
             break;
         case 'DateTimeFormat':
         case 'DateFormat':
             try {
                 $this->strDateTimeFormat = QType::Cast($mixValue, QType::String);
                 parent::__set('JqDateFormat', QCalendar::jqFrmt($this->strDateTimeFormat));
                 // trigger an update to reformat the text with the new format
                 $this->DateTime = $this->dttDateTime;
             } catch (QInvalidCastException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
             break;
         case 'Text':
             parent::__set($strName, $mixValue);
             $this->dttDateTime = new QDateTime($this->strText);
             break;
         default:
             try {
                 parent::__set($strName, $mixValue);
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
             break;
     }
 }
开发者ID:hiptc,项目名称:dle2wordpress,代码行数:81,代码来源:QDatepickerBoxBase.class.php


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