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


PHP DateTimeUtil::isValidDbFormattedDate方法代碼示例

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


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

示例1: validateAttribute

 /**
  * Validates the attribute of the model.
  * If there is any error, the error message is added to the model.
  * @param RedBeanModel $model the model being validated
  * @param string $attribute the attribute being validated
  */
 protected function validateAttribute($object, $attribute)
 {
     $value = $object->{$attribute};
     if ($this->allowEmpty && $this->isEmpty($value)) {
         return;
     }
     switch ($this->type) {
         case 'blob':
         case 'longblob':
             return;
         case 'integer':
             $valid = preg_match('/^[-+]?[0-9]+$/', trim($value));
             // Not Coding Standard
             break;
         case 'float':
             $valid = preg_match('/^[-+]?([0-9]*\\.)?[0-9]+([eE][-+]?[0-9]+)?$/', trim($value));
             // Not Coding Standard
             break;
         case 'date':
             $valid = DateTimeUtil::isValidDbFormattedDate($value);
             break;
         case 'time':
             $valid = CDateTimeParser::parse($value, $this->timeFormat) !== false;
             break;
         case 'datetime':
             $valid = DateTimeUtil::isValidDbFormattedDateTime($value);
             break;
         case 'array':
             $valid = is_array($value);
             break;
         case 'string':
         default:
             return;
     }
     if (!$valid) {
         if ($this->message !== null) {
             $message = $this->message;
         } else {
             $message = Zurmo::t('Core', '{attribute} must be {type}.');
         }
         $this->addError($object, $attribute, $message, array('{type}' => $this->type));
     }
 }
開發者ID:youprofit,項目名稱:Zurmo,代碼行數:49,代碼來源:TypeValidator.php

示例2: testIsValidDbFormattedDate

 public function testIsValidDbFormattedDate()
 {
     $this->assertTrue(DateTimeUtil::isValidDbFormattedDate('2011-09-23'));
     $this->assertTrue(DateTimeUtil::isValidDbFormattedDate('1756-01-01'));
     $this->assertFalse(DateTimeUtil::isValidDbFormattedDate('0011-09-23'));
     $this->assertFalse(DateTimeUtil::isValidDbFormattedDate('2011-13-32'));
     $this->assertFalse(DateTimeUtil::isValidDbFormattedDate('zxczxc'));
 }
開發者ID:sandeep1027,項目名稱:zurmo_,代碼行數:8,代碼來源:DateTimeUtilTest.php

示例3: getFullCalendarFormattedDateTimeElement

 /**
  * Gets full calendar formatted date time.
  * @param string $dateTime
  * @return string formatted in datetime format required for full calendar widget
  */
 public static function getFullCalendarFormattedDateTimeElement($dateTime)
 {
     assert('is_string($dateTime)');
     //The reason its put because timezone can vary from -12:00 to +12:00 max so
     //if we offset the gmt date by timezoneoffset, on applying offset, correct results
     //would come.
     if (DateTimeUtil::isValidDbFormattedDate($dateTime)) {
         $dateTime = DateTimeUtil::convertDateToDateTimeByTimeZoneOffset($dateTime);
     }
     $dateTimeObject = new DateTime();
     $dateTimeObject->setTimestamp(strtotime($dateTime));
     $offset = ZurmoTimeZoneHelper::getTimeZoneOffset();
     if ($offset < 0) {
         $offset = abs($offset);
         $dateTimeObject->sub(new DateInterval('PT' . $offset . 'S'));
     } else {
         $dateTimeObject->add(new DateInterval('PT' . $offset . 'S'));
     }
     return $dateTimeObject->format('c');
 }
開發者ID:maruthisivaprasad,項目名稱:zurmo,代碼行數:25,代碼來源:CalendarUtil.php


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