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


PHP Validation::time方法代碼示例

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


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

示例1: checkDatetimeType

 /**
  * checkDatetimeType
  *
  * @param array $question question
  * @param string $answer answer value
  * @return array error message
  */
 public function checkDatetimeType($question, $answer)
 {
     $errors = array();
     if ($question['question_type_option'] == QuestionnairesComponent::TYPE_OPTION_DATE) {
         if (!Validation::date($answer, 'ymd')) {
             $errors[] = sprintf(__d('questionnaires', 'Please enter a valid date in YY-MM-DD format.'));
         }
     } elseif ($question['question_type_option'] == QuestionnairesComponent::TYPE_OPTION_TIME) {
         if (!Validation::time($answer)) {
             $errors[] = sprintf(__d('questionnaires', 'Please enter the time.'));
         }
     } elseif ($question['question_type_option'] == QuestionnairesComponent::TYPE_OPTION_DATE_TIME) {
         if (!Validation::datetime($answer, 'ymd')) {
             $errors[] = sprintf(__d('questionnaires', 'Please enter a valid date and time.'));
         }
     }
     return $errors;
 }
開發者ID:Onasusweb,項目名稱:Questionnaires,代碼行數:25,代碼來源:QuestionnaireAnswerValidation.php

示例2: _validateDatetime

 /**
  * _validateDatetime 日付・時間の正當性
  *
  * @param object &$model use model
  * @param int $questionTypeOption 時間・日付オプション
  * @param string $answer 登録データ
  * @return bool
  */
 protected function _validateDatetime(&$model, $questionTypeOption, $answer)
 {
     if ($questionTypeOption == RegistrationsComponent::TYPE_OPTION_DATE) {
         if (!Validation::date($answer, 'ymd')) {
             $model->validationErrors['answer_value'][] = __d('registrations', 'Please enter a valid date in YY-MM-DD format.');
             return false;
         }
     } elseif ($questionTypeOption == RegistrationsComponent::TYPE_OPTION_TIME) {
         if (!Validation::time($answer)) {
             $model->validationErrors['answer_value'][] = __d('registrations', 'Please enter the time.');
             return false;
         }
     } elseif ($questionTypeOption == RegistrationsComponent::TYPE_OPTION_DATE_TIME) {
         if (!Validation::datetime($answer, 'ymd')) {
             $model->validationErrors['answer_value'][] = __d('registrations', 'Please enter a valid date and time.');
             return false;
         }
     } else {
         $model->validationErrors['answer_value'][] = __d('net_commons', 'Invalid request.');
         return false;
     }
     return true;
 }
開發者ID:NetCommons3,項目名稱:Registrations,代碼行數:31,代碼來源:RegistrationAnswerDatetimeBehavior.php

示例3: testTime

 /**
  * testTime method
  *
  * @return void
  */
 public function testTime()
 {
     $this->assertTrue(Validation::time('00:00'));
     $this->assertTrue(Validation::time('23:59'));
     $this->assertFalse(Validation::time('24:00'));
     $this->assertTrue(Validation::time('12:00'));
     $this->assertTrue(Validation::time('12:01'));
     $this->assertTrue(Validation::time('12:01am'));
     $this->assertTrue(Validation::time('12:01pm'));
     $this->assertTrue(Validation::time('1pm'));
     $this->assertTrue(Validation::time('1 pm'));
     $this->assertTrue(Validation::time('1 PM'));
     $this->assertTrue(Validation::time('01:00'));
     $this->assertFalse(Validation::time('1:00'));
     $this->assertTrue(Validation::time('1:00pm'));
     $this->assertFalse(Validation::time('13:00pm'));
     $this->assertFalse(Validation::time('9:00'));
 }
開發者ID:alvaroziqar,項目名稱:galei,代碼行數:23,代碼來源:ValidationTest.php

示例4: datetime

 /**
  * Validates a datetime value by acting as a decorator for native
  * Validation::date() and Validation::time() methods.
  *
  * @param   $check    array   field_name => value
  * @param   $options  array   Options for this rule
  * @return  boolean
  * @access  public
  */
 public function datetime($check, $options)
 {
     $check = array_shift(array_values($check));
     $datetime = strtotime($check);
     if ($datetime !== false) {
         return Validation::date(date('Y-m-d', $datetime), 'ymd') && Validation::time(date('H:i', $datetime));
     }
     return false;
 }
開發者ID:robwilkerson,項目名稱:CakePHP-Boilerplate,代碼行數:18,代碼來源:app_model.php

示例5: testValidTimeWith12Hours2

 /**
  * @testdox time should return true to 12 hours format without leading zero
  */
 public function testValidTimeWith12Hours2()
 {
     $value = '6:00pm';
     $this->assertTrue(Validation::time($value));
 }
開發者ID:klawdyo,項目名稱:spaghettiphp,代碼行數:8,代碼來源:ValidationTest.php

示例6: validateTime

 /**
  * @param options
  * - timeFormat (defaults to 'hms')
  * - allowEmpty
  * - after/before (fieldName to validate against)
  * - min/max (defaults to >= 1 - at least 1 minute apart)
  * 2011-03-02 ms
  */
 public function validateTime($data, $options = array())
 {
     if (is_array($data)) {
         $value = array_shift($data);
     } else {
         $value = $data;
     }
     $dateTime = explode(' ', trim($value), 2);
     $value = array_pop($dateTime);
     if (Validation::time($value)) {
         # after/before?
         if (!empty($options['after']) && isset($this->data[$this->alias][$options['after']])) {
             if ($this->data[$this->alias][$options['after']] >= $value) {
                 return false;
             }
         }
         if (!empty($options['before']) && isset($this->data[$this->alias][$options['before']])) {
             if ($this->data[$this->alias][$options['before']] <= $value) {
                 return false;
             }
         }
         return true;
     }
     return false;
 }
開發者ID:robksawyer,項目名稱:grabitdown,代碼行數:33,代碼來源:MyModel.php


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